Build Node.js Package and Publish Assets #5
Workflow file for this run
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
name: Build Node.js Package and Publish to Github Packages | |
on: | |
release: | |
types: [created] | |
jobs: | |
publish-gpr: | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
registry-url: https://registry.npmjs.org/ | |
- run: npm install --prefix frontend | |
- run: npm run build --prefix frontend | |
- run: npm run prepub --prefix frontend | |
- run: npm publish ./frontend/dist --access=public --tag "${{ github.event.release.tag_name }}" | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPMJS_ACCESS_TOKEN}} |