Skip to content

Commit

Permalink
fix(ci): Update upload-artifact action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
GeckoEidechse committed Mar 1, 2025
1 parent 98906d2 commit a8be488
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/push-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,29 +136,29 @@ jobs:
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
- name: Upload Linux artifact
if: matrix.platform == 'ubuntu-22.04'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
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@v3
uses: actions/upload-artifact@v4
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@v3
uses: actions/upload-artifact@v4
with:
name: windows-artifacts
path: |
src-tauri/target/release/bundle/msi/*
src-tauri/target/release/app.pdb
- name: Additionally upload Windows installer separately
if: matrix.platform == 'windows-latest'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: windows-msi
path: |
Expand Down

0 comments on commit a8be488

Please sign in to comment.