Remove logo from javascript and move to index #9
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/ | |
- name: Change version number from release | |
run: | | |
sed -i 's|"version": .*$|"version": ${{ github.event.release.tag_name }},|g' frontend/package.json | |
- run: npm install --prefix frontend | |
- run: npm run build --prefix frontend | |
- run: npm run prepub --prefix frontend | |
- run: npm publish ./frontend/dist --access=public | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPMJS_ACCESS_TOKEN}} |