From 23aed6bf41530e60d37f7db3b1cedbaabe157aa1 Mon Sep 17 00:00:00 2001 From: tympanix Date: Wed, 8 Nov 2023 15:36:51 +0100 Subject: [PATCH] fix: github access token for github actions --- .github/workflows/electorrent-workflow.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/electorrent-workflow.yml b/.github/workflows/electorrent-workflow.yml index 7822dbab..52f625a9 100644 --- a/.github/workflows/electorrent-workflow.yml +++ b/.github/workflows/electorrent-workflow.yml @@ -80,7 +80,7 @@ jobs: run: npm run dist if: github.ref != 'refs/heads/master' - name: Release artifacts - run: npm run release if: github.ref == 'refs/heads/master' + run: npm run release env: - GITHUB_TOKEN: ${{ secrets.RELEASE_ACCESS_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}