Fix non 3d annotations appearing in 3D viewport (#9) #25
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 run tests using node and then publish a package to GitHub Packages when a release is created | |
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages | |
name: Node.js Package | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- lerna.json | |
jobs: | |
publish-gpr: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
packages: write | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
registry-url: https://npm.pkg.github.com/ | |
scope: radicalimaging | |
- name: "Set user" | |
run: | | |
git config --global user.name 'Rodolfo Costa' | |
git config --global user.email 'rodolfo.costa@radicalimaging' | |
- name: "Update lerna json version" | |
run: lerna version patch --yes | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
- name: "Install packages" | |
run: yarn install --frozen-lockfile | |
- name: "Build" | |
run: yarn build | |
- name: "Publish packages" | |
run: lerna publish --loglevel verbose --ignore-scripts --yes --canary --registry "https://npm.pkg.github.com/" --force-publish | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} |