From 81e975c0d9e8e4bbd8fafcb39aac3cdd5640697e Mon Sep 17 00:00:00 2001 From: "Caleb J. Gardner" Date: Thu, 12 Feb 2026 04:22:20 -0600 Subject: [PATCH] Try doing upload in two separate steps --- .github/workflows/release-build.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-build.yml b/.github/workflows/release-build.yml index dd3bab6..423334b 100644 --- a/.github/workflows/release-build.yml +++ b/.github/workflows/release-build.yml @@ -22,8 +22,12 @@ jobs: - name: Upload to release uses: JasonEtco/upload-to-release@master with: - args: | - unsquashfs application/x-executable - unsquashfs-c-libs application/x-executable + args: unsquashfs application/x-executable + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Upload to release + uses: JasonEtco/upload-to-release@master + with: + args: unsquashfs-c-libs application/x-executable env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}