Skip to content

Commit

Permalink
ci: use correct tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
shakefu committed Nov 17, 2023
1 parent 033e38e commit a1e4376
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
- uses: open-turo/actions-release/semantic-release@v3
id: semantic-release
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
github-token: ${{ secrets.GHA_TOKEN }}
dry-run: true
- uses: docker/build-push-action@v5
with:
build-args: GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
build-args: GITHUB_TOKEN=${{ secrets.GHA_TOKEN }}
cache-from: type=gha
cache-to: type=gha,mode=max
context: .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-bin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- uses: actions/checkout@v2
- uses: wangyoucao577/go-release-action@v1.37
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
github_token: ${{ secrets.GHA_TOKEN }}
goversion: https://golang.org/dl/go1.20.2.linux-amd64.tar.gz
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ jobs:
uses: actions/checkout@v3
- uses: open-turo/actions-release/semantic-release@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
github-token: ${{ secrets.GHA_TOKEN }}

0 comments on commit a1e4376

Please sign in to comment.