From b0545160afb3f8d7dfaf660c62152c543cc35114 Mon Sep 17 00:00:00 2001 From: Elias Wendland <193786789+eliaswen@users.noreply.github.com> Date: Wed, 1 Jul 2026 20:36:49 +0200 Subject: [PATCH] chore: downgrade artifact actions to v3 for gitea compatibility --- .github/workflows/release.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e0e6c4c..c4609b8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -58,7 +58,7 @@ jobs: run: cargo build --release --target ${{ matrix.target }} - name: Upload Executable Artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: bin-${{ matrix.target }} path: target/${{ matrix.target }}/release/${{ matrix.binary }} @@ -84,7 +84,7 @@ jobs: - uses: actions/checkout@v4 - name: Download compiled binary - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v3 with: name: bin-${{ matrix.target }} path: target/${{ matrix.target }}/release/ @@ -117,7 +117,7 @@ jobs: fi - name: Upload Package Artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: pkg-${{ matrix.type }} path: dist/* @@ -133,11 +133,9 @@ jobs: fetch-depth: 0 - name: Download All Packages - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v3 with: - pattern: pkg-* path: all-packages/ - merge-multiple: true - name: Generate Changelog run: | @@ -164,6 +162,6 @@ jobs: tag_name: v${{ needs.check-release.outputs.version }} name: Release v${{ needs.check-release.outputs.version }} body_path: changelog.md - files: all-packages/* + files: all-packages/pkg-*/* env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file