Release #17
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
name: Release | |
on: | |
workflow_dispatch: | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- name: Git config user | |
uses: snow-actions/[email protected] | |
with: | |
name: "release" | |
email: "[email protected]" | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Rush install | |
run: node common/scripts/install-run-rush.js install | |
- name: Rush rebuild | |
run: node common/scripts/install-run-rush.js rebuild --verbose | |
- name: Rush publish | |
run: node common/scripts/install-run-rush.js publish --apply --publish --npm-auth-token ${{ secrets.NPMTOKEN }} --set-access-level public --target-branch main |