From 11d40df959c76cbdf65f22ac5486fe9254170496 Mon Sep 17 00:00:00 2001 From: Brandur Date: Fri, 2 Jun 2023 13:24:16 -0700 Subject: [PATCH] Fix a few more cases of an old `GITHUB_TOKEN` reference --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 726a5a6..9d7ede0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -209,7 +209,7 @@ jobs: - name: "Upload release asset" uses: actions/upload-release-asset@v1 env: - GITHUB_TOKEN: ${{ secrets.GitHubToken }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: asset_content_type: application/zip asset_name: ${{ steps.get_release_info.outputs.file_name }} @@ -305,7 +305,7 @@ jobs: - name: "Upload release asset" uses: actions/upload-release-asset@v1 env: - GITHUB_TOKEN: ${{ secrets.GitHubToken }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: asset_content_type: application/zip asset_name: ${{ steps.get_release_info.outputs.file_name }}