Skip to content

Commit 7036788

Browse files
committed
fix: use correct secret name for workflow dispatch PAT
The release-please workflow referenced secrets.PAT_WORKFLOW but the actual repository secret is WEBSSH2_PAT_WORKFLOW, causing a 403 when dispatching the docker-publish workflow.
1 parent d264c7d commit 7036788

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release-please.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
- name: Trigger Docker build
7373
if: ${{ steps.release.outputs.release_created }}
7474
env:
75-
GH_TOKEN: ${{ secrets.PAT_WORKFLOW }}
75+
GH_TOKEN: ${{ secrets.WEBSSH2_PAT_WORKFLOW }}
7676
RELEASE_TAG: ${{ steps.release.outputs.tag_name }}
7777
run: |
7878
gh workflow run docker-publish.yml \

0 commit comments

Comments
 (0)