CI: pin upload-artifact to v3 for Gitea Actions compatibility #4

Merged
such-gitea merged 1 commits from github-such-software/hash-wallet:dev into dev 2026-05-15 20:07:33 -04:00

View File

@@ -167,8 +167,11 @@ jobs:
zip -r hash_wallet_linux_${{ github.sha }}.zip bundle zip -r hash_wallet_linux_${{ github.sha }}.zip bundle
popd popd
# actions/upload-artifact@v4 uses an HTTP API that Gitea Actions does
# not implement (only the v1/v3 wire format). Pinned to @v3 for Gitea
# compatibility — also works on GitHub Actions.
- name: Upload artifact - name: Upload artifact
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v3
with: with:
name: hash-wallet-linux-${{ github.sha }} name: hash-wallet-linux-${{ github.sha }}
path: build/linux/x64/release/hash_wallet_linux_*.zip path: build/linux/x64/release/hash_wallet_linux_*.zip