From 8b9a6d26cb478faf9e8af8fdb372c5d00171621a Mon Sep 17 00:00:00 2001 From: David Leal Date: Wed, 8 Feb 2023 12:08:49 -0600 Subject: [PATCH] Fix token error --- .github/workflows/build_icons.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_icons.yml b/.github/workflows/build_icons.yml index 95d0203fc..e51ecc4cd 100644 --- a/.github/workflows/build_icons.yml +++ b/.github/workflows/build_icons.yml @@ -22,7 +22,7 @@ jobs: run: > python ./.github/scripts/icomoon_build.py ./.github/scripts/build_assets/geckodriver-v0.32.1-linux64/geckodriver ./icomoon.json - ./devicon.json ./icons ./ %GITHUB_TOKEN% --headless + ./devicon.json ./icons ./ "$GITHUB_TOKEN" --headless - name: Upload geckodriver.log for debugging purposes uses: actions/upload-artifact@v2 @@ -50,7 +50,7 @@ jobs: # will have "new_icons.png" and "new_svgs.png" # in that order (cause sorted alphabetically) path: ./screenshots/*.png - client_id: ${{secrets.IMGUR_CLIENT_ID}} + client_id: ${{ secrets.IMGUR_CLIENT_ID }} - name: Get the release message from file id: release_message_step