mirror of
https://github.com/Cyrix126/gupaxx.git
synced 2024-12-22 22:59:27 +00:00
ci.yml: fix upload
This commit is contained in:
parent
94d41c1297
commit
858e43dbcf
1 changed files with 23 additions and 3 deletions
26
.github/workflows/ci.yml
vendored
26
.github/workflows/ci.yml
vendored
|
@ -57,8 +57,28 @@ jobs:
|
||||||
fi
|
fi
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- name: Archive
|
- name: Archive (Debug)
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: festival-${{ matrix.os }}
|
name: gupax-debug-${{ matrix.os }}
|
||||||
path: target
|
if: matrix.os == 'windows-2019'
|
||||||
|
path: target/debug/gupax.exe
|
||||||
|
if: matrix.os == 'macos-11'
|
||||||
|
path: |
|
||||||
|
target/debug/bundle/osx/Gupax.app
|
||||||
|
target/aarch64-apple-darwin/debug/bundle/osx/Gupax.app
|
||||||
|
if: matrix.os == 'ubuntu-20.04'
|
||||||
|
path: target/debug/gupax
|
||||||
|
|
||||||
|
- name: Archive (Release)
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: gupax-release-${{ matrix.os }}
|
||||||
|
if: matrix.os == 'windows-2019'
|
||||||
|
path: target/release/gupax.exe
|
||||||
|
if: matrix.os == 'macos-11'
|
||||||
|
path: |
|
||||||
|
target/release/bundle/osx/Gupax.app
|
||||||
|
target/aarch64-apple-darwin/release/bundle/osx/Gupax.app
|
||||||
|
if: matrix.os == 'ubuntu-20.04'
|
||||||
|
path: target/release/gupax
|
||||||
|
|
Loading…
Reference in a new issue