mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-04-23 09:08:32 +02:00
Fix artifact upload
This commit is contained in:
13
.github/workflows/artifacts.yml
vendored
13
.github/workflows/artifacts.yml
vendored
@@ -57,20 +57,27 @@ jobs:
|
|||||||
- name: Upload Ubuntu Artifacts
|
- name: Upload Ubuntu Artifacts
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
if: matrix.platform == 'ubuntu-latest'
|
if: matrix.platform == 'ubuntu-latest'
|
||||||
|
working-directory: ./src-tauri/target/release/bundle
|
||||||
with:
|
with:
|
||||||
name: linux-updater-artifacts
|
name: linux-updater-artifacts
|
||||||
path: ./target/release/bundle/appimage/*.AppImage.*
|
path: ./appimage/*.AppImage.*
|
||||||
|
|
||||||
- name: Upload Windows Artifacts
|
- name: Upload Windows Artifacts
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
if: matrix.platform == 'windows-latest'
|
if: matrix.platform == 'windows-latest'
|
||||||
|
working-directory: ./src-tauri/target/release/bundle
|
||||||
with:
|
with:
|
||||||
name: windows-updater-artifacts
|
name: windows-updater-artifacts
|
||||||
path: ./target/release/bundle/msi/*
|
path: ./msi/*
|
||||||
|
|
||||||
- name: Upload MacOS Artifacts
|
- name: Upload MacOS Artifacts
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
if: matrix.platform == 'macos-latest'
|
if: matrix.platform == 'macos-latest'
|
||||||
|
working-directory: ./src-tauri/target/release/bundle
|
||||||
with:
|
with:
|
||||||
name: macos-updater-artifacts
|
name: macos-updater-artifacts
|
||||||
path: ./target/release/bundle/macos/*.app.tar.*
|
path: |
|
||||||
|
./macos/*.app
|
||||||
|
./macos/*.app.tar.gz
|
||||||
|
./macos/*.sig
|
||||||
|
./dmg/*.dmg
|
||||||
|
|||||||
Binary file not shown.
Reference in New Issue
Block a user