-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* build: release version 5.0.0 * test: add ember/string deps in ember-try release and > * build: comment the release job for now as it's broken
- Loading branch information
1 parent
147156a
commit 967fc13
Showing
4 changed files
with
75 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,81 +1,81 @@ | ||
# GitHub Actions documentation: | ||
# https://docs.github.com/en/actions | ||
|
||
name: Create new tag, create new GitHub release and publish to NPM | ||
# name: Create new tag, create new GitHub release and publish to NPM | ||
|
||
on: | ||
workflow_run: | ||
workflows: | ||
- CI | ||
branches: | ||
- master | ||
types: | ||
- completed | ||
# on: | ||
# workflow_run: | ||
# workflows: | ||
# - CI | ||
# branches: | ||
# - master | ||
# types: | ||
# - completed | ||
|
||
concurrency: | ||
group: tag-release-publish-${{ github.ref }} | ||
cancel-in-progress: true | ||
# concurrency: | ||
# group: tag-release-publish-${{ github.ref }} | ||
# cancel-in-progress: true | ||
|
||
jobs: | ||
create_git_tag: | ||
if: ${{ github.event.workflow_run.conclusion == 'success' }} | ||
name: Create new tag | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 20 | ||
outputs: | ||
new_tag: ${{ steps.detect_then_tag.outputs.tag }} | ||
new_version: ${{ steps.detect_then_tag.outputs.current-version }} | ||
old_version: ${{ steps.detect_then_tag.outputs.previous-version }} | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 2 | ||
# jobs: | ||
# create_git_tag: | ||
# if: ${{ github.event.workflow_run.conclusion == 'success' }} | ||
# name: Create new tag | ||
# runs-on: ubuntu-latest | ||
# timeout-minutes: 20 | ||
# outputs: | ||
# new_tag: ${{ steps.detect_then_tag.outputs.tag }} | ||
# new_version: ${{ steps.detect_then_tag.outputs.current-version }} | ||
# old_version: ${{ steps.detect_then_tag.outputs.previous-version }} | ||
# steps: | ||
# - name: Checkout repository | ||
# uses: actions/checkout@v3 | ||
# with: | ||
# fetch-depth: 2 | ||
|
||
- name: Detect and tag new version | ||
id: detect_then_tag | ||
uses: salsify/action-detect-and-tag-new-version@v2 | ||
# - name: Detect and tag new version | ||
# id: detect_then_tag | ||
# uses: salsify/action-detect-and-tag-new-version@v2 | ||
|
||
create_github_release: | ||
if: ${{ needs.create_git_tag.outputs.new_tag }} | ||
name: Create new GitHub release | ||
needs: create_git_tag | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 20 | ||
steps: | ||
- uses: ncipollo/release-action@v1 | ||
with: | ||
body: "\ | ||
Changelog: \ | ||
${{ github.server_url }}/${{ github.repository }}\ | ||
/compare/\ | ||
v${{ needs.create_git_tag.outputs.old_version }}...v${{ needs.create_git_tag.outputs.new_version }}\ | ||
" | ||
name: Release ${{ needs.create_git_tag.outputs.new_tag }} | ||
tag: ${{ needs.create_git_tag.outputs.new_tag }} | ||
# create_github_release: | ||
# if: ${{ needs.create_git_tag.outputs.new_tag }} | ||
# name: Create new GitHub release | ||
# needs: create_git_tag | ||
# runs-on: ubuntu-latest | ||
# timeout-minutes: 20 | ||
# steps: | ||
# - uses: ncipollo/release-action@v1 | ||
# with: | ||
# body: "\ | ||
# Changelog: \ | ||
# ${{ github.server_url }}/${{ github.repository }}\ | ||
# /compare/\ | ||
# v${{ needs.create_git_tag.outputs.old_version }}...v${{ needs.create_git_tag.outputs.new_version }}\ | ||
# " | ||
# name: Release ${{ needs.create_git_tag.outputs.new_tag }} | ||
# tag: ${{ needs.create_git_tag.outputs.new_tag }} | ||
|
||
publish_npm: | ||
name: Publish to NPM | ||
needs: create_github_release | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 20 | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
# publish_npm: | ||
# name: Publish to NPM | ||
# needs: create_github_release | ||
# runs-on: ubuntu-latest | ||
# timeout-minutes: 20 | ||
# steps: | ||
# - name: Checkout repository | ||
# uses: actions/checkout@v3 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
cache: 'yarn' | ||
node-version: 16 | ||
registry-url: https://registry.npmjs.org | ||
# - name: Set up Node.js | ||
# uses: actions/setup-node@v3 | ||
# with: | ||
# cache: 'yarn' | ||
# node-version: 16 | ||
# registry-url: https://registry.npmjs.org | ||
|
||
- name: Install Dependencies | ||
run: yarn install --frozen-lockfile | ||
working-directory: ember-slugify | ||
# - name: Install Dependencies | ||
# run: yarn install --frozen-lockfile | ||
# working-directory: ember-slugify | ||
|
||
- name: Publish to NPM | ||
run: npm publish | ||
working-directory: ember-slugify | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTOMATION_TOKEN }} | ||
# - name: Publish to NPM | ||
# run: npm publish | ||
# working-directory: ember-slugify | ||
# env: | ||
# NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTOMATION_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters