Skip to content

update templates to use react18, presentation-components to v5 (#335) #305

update templates to use react18, presentation-components to v5 (#335)

update templates to use react18, presentation-components to v5 (#335) #305

Workflow file for this run

# This workflow will install dependencies, check for dependency version consistency, build all packages in the repo, and run tests
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: iTwin Viewer NPM Publish
on:
push:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.IMJS_ADMIN_GH_TOKEN }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: |
set -e
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 "imodeljs-admin"
git config user.email "imodeljs-admin@users.noreply.github.com"
node common/scripts/install-run-rush.js version --bump --target-branch master
node common/scripts/install-run-rush.js publish --include-all --set-access-level public --apply --publish --npm-auth-token $NPM_TOKEN --target-branch master
env:
NPM_TOKEN: ${{ secrets.NPMJS_PUBLISH_ITWIN }}