-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9076466
commit 052f7bf
Showing
3 changed files
with
86 additions
and
6 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
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Release | ||
|
||
on: | ||
- workflow_dispatch | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
|
||
if: github.ref == 'refs/heads/main' | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup | ||
uses: ./.github/actions/setup | ||
with: | ||
git_bot_token: ${{ secrets.GIT_BOT_TOKEN }} | ||
|
||
- name: Release | ||
env: | ||
NODE_AUTH_TOKEN: ${{ inputs.NPM_TOKEN }} | ||
GITHUB_TOKEN: ${{ inputs.GITHUB_TOKEN }} | ||
# Use npx instead of yarn because yarn automagically sets NPM_* environment variables | ||
# like NPM_CONFIG_REGISTRY so npm publish ends up ignoring the .npmrc file | ||
# which is set up by `setup-node` action. | ||
shell: bash | ||
run: npx nx affected --base=last-release --target=version | ||
|
||
- name: Tag last-release | ||
shell: bash | ||
run: git tag -f last-release | ||
|
||
- name: Push changes | ||
uses: ad-m/github-push-action@master | ||
with: | ||
github_token: ${{ inputs.GITHUB_TOKEN }} | ||
branch: ${{ github.ref }} | ||
force: true | ||
tags: true |
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