From b259633b13914bd8f4f17523e471337f047d770a Mon Sep 17 00:00:00 2001 From: GoogilyBoogily Date: Wed, 19 Aug 2026 15:32:56 -0500 Subject: [PATCH] fix: end the pipeline at the release PR instead of chaining a broken publish --- .github/workflows/release-pipeline.yml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/.github/workflows/release-pipeline.yml b/.github/workflows/release-pipeline.yml index f3571b4..f4a16e9 100644 --- a/.github/workflows/release-pipeline.yml +++ b/.github/workflows/release-pipeline.yml @@ -61,8 +61,6 @@ jobs: permissions: contents: write pull-requests: write - outputs: - new-version: ${{ steps.bump.outputs.new-version }} steps: - uses: actions/checkout@v6 @@ -74,16 +72,3 @@ jobs: base-branch: ${{ inputs.base-branch }} github-token: ${{ secrets.GITHUB_TOKEN }} dry-run: ${{ inputs.dry-run }} - - publish: - needs: bump-version - permissions: - id-token: write - contents: write - uses: ./.github/workflows/publish.yml - with: - ref: v${{ needs.bump-version.outputs.new-version }} - dry-run: ${{ inputs.dry-run }} - runs-on: ${{ inputs.runs-on }} - secrets: - npm-token: ${{ secrets.npm-token }}