From 3ab4cb47d883bf5f349603d5426cfccb60635865 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 25 Jul 2026 09:48:28 +0000 Subject: [PATCH 1/2] Fix release job: use download-artifact@v4 and add GH_TOKEN --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5a8054a..21ab9c3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -200,7 +200,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/download-artifact@v5 + - uses: actions/download-artifact@v4 with: pattern: PlaylistForge-* merge-multiple: true @@ -208,6 +208,8 @@ jobs: - name: List release artifacts run: ls -lhR release-artifacts/ - name: Upload to GitHub Release + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | gh release create "${{ github.ref_name }}" \ --repo "${{ github.repository }}" \ From 00615365760496a9ceec7c28524a1403c79075d0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 25 Jul 2026 10:51:45 +0000 Subject: [PATCH 2/2] Use custom GITHUBI secret for release auth --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 21ab9c3..c0ba105 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -209,7 +209,7 @@ jobs: run: ls -lhR release-artifacts/ - name: Upload to GitHub Release env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GH_TOKEN: ${{ secrets.GITHUBI }} run: | gh release create "${{ github.ref_name }}" \ --repo "${{ github.repository }}" \