Skip to content

Fix CI: use local bin path to avoid npm bumpy name collision #7

Fix CI: use local bin path to avoid npm bumpy name collision

Fix CI: use local bin path to avoid npm bumpy name collision #7

Workflow file for this run

name: Release
on:
push:
branches: [main]
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
id-token: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: oven-sh/setup-bun@v2
- run: bun install
# Build first since we use the local workspace package
- run: bun run --filter @varlock/bumpy build
- run: ./node_modules/.bin/bumpy ci release
env:
GH_TOKEN: ${{ github.token }}