From 4e892dcc889582bf438bbe908eff78a854a610bf Mon Sep 17 00:00:00 2001 From: GeckoEidechse Date: Wed, 31 Jan 2024 18:04:27 +0100 Subject: Revert "chore: Bump upload-artifact action to v4 (#768)" This reverts commit 348f30e23276b8a7722eb562a0a8995708e7c2dd. There's a breaking change in v4 that currently prevents releases from building. As such, revert the version bump for now until the breaking changes have been addressed. --- .github/workflows/push-test.yml | 8 ++++---- .github/workflows/release.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/push-test.yml b/.github/workflows/push-test.yml index 9da3c9db..6fd267b1 100644 --- a/.github/workflows/push-test.yml +++ b/.github/workflows/push-test.yml @@ -132,21 +132,21 @@ jobs: TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} - name: Upload Linux artifact if: matrix.platform == 'ubuntu-22.04' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: linux-artifacts path: | src-tauri/target/release/bundle/appimage/* - name: Upload Linux AppImage if: matrix.platform == 'ubuntu-22.04' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: linux-appimage path: | src-tauri/target/release/bundle/appimage/*.AppImage - name: Upload Windows artifact if: matrix.platform == 'windows-latest' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: windows-artifacts path: | @@ -154,7 +154,7 @@ jobs: src-tauri/target/release/app.pdb - name: Additionally upload Windows installer separately if: matrix.platform == 'windows-latest' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: windows-msi path: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6a5096c4..48539636 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -59,7 +59,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} - name: upload build artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: path: | src-tauri/target/release/bundle/appimage/*AppImage* -- cgit v1.2.3