Skip to content

Update npm-publish-github-packages.yml #21

Update npm-publish-github-packages.yml

Update npm-publish-github-packages.yml #21

# 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: read|write

Check failure on line 16 in .github/workflows/npm-publish-github-packages.yml

View workflow run for this annotation

GitHub Actions / Node.js Package

Invalid workflow file

The workflow is not valid. .github/workflows/npm-publish-github-packages.yml (Line: 16, Col: 17): Unexpected value 'read|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}}