Skip to content

chore(deps): bump rollup from 4.28.1 to 4.29.1 #1030

chore(deps): bump rollup from 4.28.1 to 4.29.1

chore(deps): bump rollup from 4.28.1 to 4.29.1 #1030

Workflow file for this run

name: Release
on:
pull_request:
branches:
- main
types: [closed]
env:
CI: true
jobs:
release-new-version:
if: ${{ github.event.pull_request.merged && startsWith(github.head_ref, 'release/') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
registry-url: "https://registry.npmjs.org"
- run: npm ci --workspaces
# Running top-level ci should happen after workspaces level, running these
# the other way around results in top-level dependencies (namely, lerna)
# not being installed.
- run: npm ci
- run: npm run build
- run: npm run release
env:
NODE_AUTH_TOKEN: ${{ secrets.INRUPT_NPM_TOKEN }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}