Skip to content

Build Node.js Package and Publish Assets #5

Build Node.js Package and Publish Assets

Build Node.js Package and Publish Assets #5

Workflow file for this run

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}}