Skip to content

Commit

Permalink
Add github_token variable (#52)
Browse files Browse the repository at this point in the history
GITHUB_TOKEN is required for goreleaser to run.

According to the [docs](https://help.github.com/en/articles/virtual-environments-for-github-actions#github_token-secret)
```
The GITHUB_TOKEN secret is a GitHub App installation token scoped to the repository
that contains your workflow. GitHub creates the GITHUB_TOKEN secret for you by
default, but you must include it in your workflow file in order for actions to use it.
```
  • Loading branch information
btromanova authored Oct 3, 2019
1 parent 1b68622 commit 8ee286c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,5 @@ jobs:
with:
version: latest
args: release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 8ee286c

Please sign in to comment.