From 4b1941d0bf306cbe083da37f234a122b9d512779 Mon Sep 17 00:00:00 2001 From: keligrubb Date: Tue, 14 Apr 2026 23:07:10 -0400 Subject: [PATCH] fix(release): use artifact actions v3 on Gitea mirrors. v4+ relies on @actions/artifact v2, which this runner rejects. Download uses path: . so release PDFs land in the job root for ls *.pdf. --- .gitea/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 5f6ddb9..357a0b7 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -34,7 +34,7 @@ jobs: run: npm start - name: Upload PDF artifact - uses: https://git.keligrubb.com/actions/upload-artifact@v7 + uses: https://git.keligrubb.com/actions/upload-artifact@v3 with: name: release-pdf path: "*.pdf" @@ -47,9 +47,10 @@ jobs: GITEA_TOKEN: ${{ secrets.SCROLLSMITH_GITEA_TOKEN }} steps: - name: Download PDF artifact - uses: https://git.keligrubb.com/actions/download-artifact@v8 + uses: https://git.keligrubb.com/actions/download-artifact@v3 with: name: release-pdf + path: . - name: Create release and upload PDF run: | -- 2.52.0