Skip to content

Commit

Permalink
Use the default github token in the release action (#881)
Browse files Browse the repository at this point in the history
  • Loading branch information
vcheung-stripe committed May 31, 2022
1 parent 1d2d631 commit acd8564
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
version: v0.184.0
args: release -f .goreleaser/mac.yml --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GORELEASER_GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

build-linux:
runs-on: ubuntu-latest
Expand All @@ -49,7 +49,7 @@ jobs:
version: v0.184.0
args: release -f .goreleaser/linux.yml --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GORELEASER_GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ARTIFACTORY_SECRET: ${{ secrets.ARTIFACTORY_SECRET }}

build-windows:
Expand All @@ -69,7 +69,7 @@ jobs:
version: v0.184.0
args: release -f .goreleaser/windows.yml --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GORELEASER_GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

upload-to-virustotal:
needs: [build-windows]
Expand All @@ -81,5 +81,5 @@ jobs:
run: scripts/upload-zip-to-virustotal.sh
shell: bash
env:
GITHUB_TOKEN: ${{ secrets.GORELEASER_GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VIRUSTOTAL_API_KEY: ${{ secrets.VIRUSTOTAL_API_KEY }}

0 comments on commit acd8564

Please sign in to comment.