Fix artifact upload

This commit is contained in:
Gregory Schier
2023-03-12 19:01:48 -07:00
parent b3cee3ace3
commit b62c11222a
3 changed files with 10 additions and 15 deletions

View File

@@ -57,20 +57,27 @@ jobs:
- name: Upload Ubuntu Artifacts
uses: actions/upload-artifact@v2
if: matrix.platform == 'ubuntu-latest'
working-directory: ./src-tauri/target/release/bundle
with:
name: linux-updater-artifacts
path: ./target/release/bundle/appimage/*.AppImage.*
path: ./appimage/*.AppImage.*
- name: Upload Windows Artifacts
uses: actions/upload-artifact@v2
if: matrix.platform == 'windows-latest'
working-directory: ./src-tauri/target/release/bundle
with:
name: windows-updater-artifacts
path: ./target/release/bundle/msi/*
path: ./msi/*
- name: Upload MacOS Artifacts
uses: actions/upload-artifact@v2
if: matrix.platform == 'macos-latest'
working-directory: ./src-tauri/target/release/bundle
with:
name: macos-updater-artifacts
path: ./target/release/bundle/macos/*.app.tar.*
path: |
./macos/*.app
./macos/*.app.tar.gz
./macos/*.sig
./dmg/*.dmg