Fix iTwin favorites (#130) #89
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 workflow will publish packages in this repo to the npm registry. | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Admin Components NPM Publish | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.PUBLISH_PAT }} | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: | | |
set -e | |
export BROWSERSLIST_IGNORE_OLD_DATA=1 | |
echo 'Installing...' | |
node common/scripts/install-run-rush.js install | |
echo 'Building...' | |
node common/scripts/install-run-rush.js rebuild | |
echo 'Publishing...' | |
git config user.name "AdminComponentsWorkflow" | |
git config user.email "admincomponents@users.noreply.github.com" | |
node common/scripts/install-run-rush.js version --bump --target-branch main | |
node common/scripts/install-run-rush.js publish --include-all --set-access-level public --apply --publish --npm-auth-token $NPM_TOKEN --target-branch main --suffix alpha | |
env: | |
NPM_TOKEN: ${{ secrets.NPMJS_PUBLISH_ITWIN }} |