Skip to content

Commit 35a9145

Browse files
authored
Add discord env variables to release job (#59)
## 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.
1 parent 8d34549 commit 35a9145

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,5 +86,7 @@ jobs:
8686
version: latest
8787
args: release --rm-dist
8888
env:
89+
DISCORD_WEBHOOK_ID: ${{ secrets.DISCORD_WEBHOOK_ID }}
90+
DISCORD_WEBHOOK_TOKEN: ${{ secrets.DISCORD_WEBHOOK_TOKEN }}
8991
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9092
TELEMETRY_KEY: ${{ secrets.TELEMETRY_KEY }}

0 commit comments

Comments
 (0)