Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/build-tauri.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:

- name: Upload Linux artifacts (AppImage)
if: matrix.platform == 'ubuntu-latest'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: tauri-linux-${{ matrix.arch }}-appimage
path: src-tauri/target/${{ matrix.target }}/release/bundle/appimage/*.AppImage
Expand All @@ -121,7 +121,7 @@ jobs:

- name: Upload Linux artifacts (deb)
if: matrix.platform == 'ubuntu-latest'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: tauri-linux-${{ matrix.arch }}-deb
path: src-tauri/target/${{ matrix.target }}/release/bundle/deb/*.deb
Expand All @@ -130,7 +130,7 @@ jobs:

- name: Upload Windows artifacts (MSI)
if: matrix.platform == 'windows-latest'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: tauri-windows-${{ matrix.arch }}-msi
path: src-tauri/target/${{ matrix.target }}/release/bundle/msi/*.msi
Expand All @@ -139,7 +139,7 @@ jobs:

- name: Upload Windows artifacts (NSIS)
if: matrix.platform == 'windows-latest'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: tauri-windows-${{ matrix.arch }}-nsis
path: src-tauri/target/${{ matrix.target }}/release/bundle/nsis/*.exe
Expand All @@ -148,7 +148,7 @@ jobs:

- name: Upload macOS artifacts (DMG)
if: matrix.platform == 'macos-latest'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: tauri-macos-${{ matrix.arch }}-dmg
path: src-tauri/target/${{ matrix.target }}/release/bundle/dmg/*.dmg
Expand All @@ -157,7 +157,7 @@ jobs:

- name: Upload macOS artifacts (App)
if: matrix.platform == 'macos-latest'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: tauri-macos-${{ matrix.arch }}-app
path: src-tauri/target/${{ matrix.target }}/release/bundle/macos/*.app
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,15 +120,15 @@ jobs:
# continue-on-error: true

- name: Upload test results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
if: always()
with:
name: test-results
path: coverage/junit.xml
retention-days: 30

- name: Upload coverage report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
if: always()
with:
name: coverage-report
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
du -sh out/ >> $GITHUB_STEP_SUMMARY || echo "Build output size check skipped" >> $GITHUB_STEP_SUMMARY

- name: Upload build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: nextjs-build
path: out/
Expand Down