Skip to content

Release

Release #18

Workflow file for this run

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