Skip to content

Commit

Permalink
workflows: Fix missing GH token in release script
Browse files Browse the repository at this point in the history
  • Loading branch information
bobvawter committed May 31, 2024
1 parent cd2fb55 commit e3f4eca
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/go-binaries.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@ jobs:
- id: release-artifacts
name: Attach binaries to GitHub Release
if: ${{ github.event.release.tag_name }}
run: gh release upload ${{ github.event.release.tag_name }} upload/*
env:
GH_TOKEN: ${{ github.token }}
run: gh release upload ${{ github.event.release.tag_name }} upload/replicator*-${{ github.event.release.tag_name }}*

- id: auth
name: Authenticate to GCP
Expand Down

0 comments on commit e3f4eca

Please sign in to comment.