Skip to content

Commit

Permalink
Add discord env variables to release job (#59)
Browse files Browse the repository at this point in the history
## Summary
We updated the release process to automatically announce on Discord, but we forgot to pass those secrets as environment variables. As a result, the release process fails and I'm unable to release version `0.0.4`. This PR fixes that.

## How was it tested?
I'll test by trying to release again.
  • Loading branch information
loreto committed Sep 3, 2022
1 parent 8d34549 commit 35a9145
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 @@ -86,5 +86,7 @@ jobs:
version: latest
args: release --rm-dist
env:
DISCORD_WEBHOOK_ID: ${{ secrets.DISCORD_WEBHOOK_ID }}
DISCORD_WEBHOOK_TOKEN: ${{ secrets.DISCORD_WEBHOOK_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TELEMETRY_KEY: ${{ secrets.TELEMETRY_KEY }}

0 comments on commit 35a9145

Please sign in to comment.