Skip to content

Remove registry-url from setup-node to avoid conflicting with OIDC #40

Remove registry-url from setup-node to avoid conflicting with OIDC

Remove registry-url from setup-node to avoid conflicting with OIDC #40

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 # required for npm trusted publishing (OIDC)
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: oven-sh/setup-bun@v2
- uses: actions/setup-node@v4
with:
node-version: lts/*
- run: bun install
# Build first since we use the local workspace package instead of the published one
- run: bun run --filter @varlock/bumpy build
# run bun install again to make the now built CLI available
- run: bun install
- run: bunx @varlock/bumpy ci release
env:
GH_TOKEN: ${{ github.token }}