From 4d3d6165745b96413a1ca4a32cf42e819831e9e9 Mon Sep 17 00:00:00 2001 From: Max Litruv Boonzaayer Date: Wed, 12 Nov 2025 07:04:52 +1100 Subject: [PATCH] fix: add GH_TOKEN to build steps for electron-builder --- .github/workflows/build-all.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build-all.yml b/.github/workflows/build-all.yml index 92bf2ce..d4e227e 100644 --- a/.github/workflows/build-all.yml +++ b/.github/workflows/build-all.yml @@ -23,6 +23,8 @@ jobs: - name: Build Windows run: npm run dist:win + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Upload Windows artifacts uses: actions/upload-artifact@v4 @@ -46,6 +48,8 @@ jobs: - name: Build Linux run: npm run dist:linux + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Upload Linux artifacts uses: actions/upload-artifact@v4