mirror of
https://github.com/tiktok/sparo.git
synced 2024-12-03 04:16:54 -05:00
29 lines
1.2 KiB
YAML
29 lines
1.2 KiB
YAML
name: Publish NPM Packages
|
|
on: workflow_dispatch
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 2
|
|
token: ${{ secrets.BOT_ACCESS_TOKEN }}
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
- name: git config email
|
|
run: git config --local user.email tiktokbot@users.noreply.github.com
|
|
- name: git config name
|
|
run: git config --local user.name tiktokbot
|
|
- name: Rush Install
|
|
run: node common/scripts/install-run-rush.js install
|
|
- name: Rush build
|
|
run: node common/scripts/install-run-rush.js build --verbose --production
|
|
- name: Rush test
|
|
run: node common/scripts/install-run-rush.js test --verbose
|
|
- name: 'Rush version (Policy: sparo)'
|
|
run: node common/scripts/install-run-rush.js version --bump --version-policy sparo --target-branch ${{ github.ref_name }}
|
|
- name: Rush publish
|
|
run: node common/scripts/install-run-rush.js publish --apply --publish --include-all --target-branch ${{ github.ref_name }}
|
|
env:
|
|
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
|