From ff1813e618ac37ce90241abef7c463697e574ad2 Mon Sep 17 00:00:00 2001 From: realbigsean Date: Mon, 15 Feb 2021 06:09:53 +0000 Subject: [PATCH] Automated release Github upload fix (#2192) ## Issue Addressed Our v1.1.0 automated release failed to upload to Github. The `hub` command failed with a `403`, which seems like this issue: https://github.com/github/hub/issues/2149 ## Proposed Changes The suggested fix in that issue is to set the `$GITHUB_USER` environment variable. I can't really test this because this hasn't been failing on my fork, but seems low risk Co-authored-by: realbigsean Co-authored-by: Paul Hauner --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e2d366d90..cbb2a1053 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -227,6 +227,7 @@ jobs: - name: Create Release Draft env: + GITHUB_USER: sigp GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # The formatting here is borrowed from OpenEthereum: https://github.com/openethereum/openethereum/blob/main/.github/workflows/build.yml