Skip to content

dependabot: Bump rollup from 2.79.1 to 3.29.5 in the npm_and_yarn gro… #8

dependabot: Bump rollup from 2.79.1 to 3.29.5 in the npm_and_yarn gro…

dependabot: Bump rollup from 2.79.1 to 3.29.5 in the npm_and_yarn gro… #8

Workflow file for this run

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