diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index c42ff45..861a1c0 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -1,20 +1,23 @@ -name: Publish Package to npmjs +name: Publish package to GitHub Packages on: release: types: [published] jobs: build: runs-on: ubuntu-latest + permissions: + contents: read + packages: write steps: - uses: actions/checkout@v4 - # Setup .npmrc file to publish to npm + # Setup .npmrc file to publish to GitHub Packages - uses: actions/setup-node@v3 with: - node-version: '18.x' - registry-url: 'https://registry.npmjs.org' + node-version: '20.x' + registry-url: 'https://npm.pkg.github.com' + # Defaults to the user or organization that owns the workflow file scope: '@smflow' - - run: cat .npmrc - run: npm ci - run: npm publish env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}