dependabot: Bump rollup from 2.79.1 to 3.29.5 in the npm_and_yarn gro… #8
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
on: | |
push: | |
branches: [master] | |
paths: | |
- 'lib/**' | |
- 'backend/version' | |
jobs: | |
deploy: | |
name: Deploy Package | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: jdx/mise-action@v2 | |
- name: create .npmrc | |
run: | | |
echo "//registry.npmjs.org/:_authToken=\${NODE_AUTH_TOKEN} | |
registry=https://registry.npmjs.org/ | |
always-auth=true" > ~/.npmrc | |
- name: Update Version | |
run: | | |
echo -n "-$(git rev-parse --short HEAD)" >> backend/version && \ | |
node util/versioning.mjs update package.json lib/package.json | |
- name: Install, Build & Publish | |
working-directory: lib | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | |
run: | | |
pnpm install && \ | |
pnpm build && \ | |
pnpm publish --no-git-checks --tag prerelease |