diff options
author | GeckoEidechse <gecko.eidechse+git@pm.me> | 2024-01-31 18:04:27 +0100 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2024-01-31 18:04:27 +0100 |
commit | 4e892dcc889582bf438bbe908eff78a854a610bf (patch) | |
tree | 38199247770b21765d4ae60609511ad21ab11d8b | |
parent | 3d8ed24405f89a0eba2f9169cf94ff6018e34132 (diff) | |
download | FlightCore-4e892dcc889582bf438bbe908eff78a854a610bf.tar.gz FlightCore-4e892dcc889582bf438bbe908eff78a854a610bf.zip |
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.
-rw-r--r-- | .github/workflows/push-test.yml | 8 | ||||
-rw-r--r-- | .github/workflows/release.yml | 2 |
2 files changed, 5 insertions, 5 deletions
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* |