From c77ec64e49b4b5ee2b2b1eaca2c19d87d97200e6 Mon Sep 17 00:00:00 2001 From: Geolffrey Mena Date: Thu, 13 Jun 2024 16:25:47 -0600 Subject: [PATCH] chore: fix workflow --- .github/workflows/publish.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index fbc63aa4..606dae41 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -23,6 +23,8 @@ jobs: run: npm install --force - name: Build/release run: npm run publish:linux + env: + GH_TOKEN: ${{ secrets.GH_TOKEN }} build-on-mac: runs-on: macos-latest strategy: @@ -38,6 +40,8 @@ jobs: run: npm install --force - name: Build/release run: npm run publish:mac + env: + GH_TOKEN: ${{ secrets.GH_TOKEN }} build-on-win: runs-on: window-latest strategy: @@ -52,4 +56,6 @@ jobs: - name: Install run: npm install --force - name: Build/release - run: npm run publish:win \ No newline at end of file + run: npm run publish:win + env: + GH_TOKEN: ${{ secrets.GH_TOKEN }} \ No newline at end of file