From 35a914576bb6d7d6376780ed946141ee3926633d Mon Sep 17 00:00:00 2001 From: Daniel Loreto <279789+loreto@users.noreply.github.com> Date: Sat, 3 Sep 2022 06:03:13 -0700 Subject: [PATCH] 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. --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 51632b5073b..b1ba1e213c2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 }}