From b9a5a81aa41a56d9501fa93e63933749754440a8 Mon Sep 17 00:00:00 2001 From: Thomas Roque Date: Mon, 1 May 2023 15:29:38 +0200 Subject: [PATCH] Adding GH_TOKEN --- .github/workflows/build-and-release.yml | 4 ++-- .github/workflows/build.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index bd78a8b6..c217f3ff 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -62,7 +62,7 @@ jobs: ref: ${{ github.ref }} repository: ${{ github.repository }} env: - NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + NODE_AUTH_TOKEN: ${{ secrets.GH_TOKEN }} - name: Install Dependencies run: | cd src @@ -77,4 +77,4 @@ jobs: publish: always draft: true prerelease: false - token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + token: ${{ secrets.GH_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0cd0f9ea..e77973ef 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,6 +33,6 @@ jobs: - name: Build env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GH_TOKEN: ${{ secrets.GH_TOKEN }} run: npm run dist shell: bash