Skip to content

Release

Release #89

Workflow file for this run

name: Release
on:
push:
tags:
- v1.*
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Git config user
run: |
git config --local user.name "artusxbot"
git config --local user.email "[email protected]"
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Verify Change Logs
run: node common/scripts/install-run-rush.js change --verify
- name: Rush Install
run: node common/scripts/install-run-rush.js install
- name: Rush rebuild
run: node common/scripts/install-run-rush.js rebuild
- name: Rush publish
env:
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
run: |
node common/scripts/install-run-rush.js publish
node common/scripts/install-run-rush.js publish-package