mirror of
https://github.com/nzp-team/quakespasm.git
synced 2024-11-10 06:32:03 +00:00
YML: Fix dispatching of Artifacts
This commit is contained in:
parent
2d2bb6ca11
commit
0f4f868377
1 changed files with 6 additions and 10 deletions
16
.github/workflows/build-and-release.yml
vendored
16
.github/workflows/build-and-release.yml
vendored
|
@ -21,33 +21,29 @@ jobs:
|
|||
working-directory: ./
|
||||
run: |
|
||||
make -j$(numproc) -f Makefile.vita
|
||||
- name: Archive
|
||||
working-directory: ./build/vita
|
||||
run: |
|
||||
zip -r vita-nzp-vpk.zip nzp.vpk
|
||||
- name: Upload Artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: vita-nzp-vpk
|
||||
path: ./build/vita/vita-nzp-vpk.zip
|
||||
path: ./build/vita/nzp.vpk
|
||||
Compile-NRO:
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: devkitpro/devkita64
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: Build
|
||||
working-directory: ./
|
||||
run: |
|
||||
make -j$(numproc) -f Makefile.nx
|
||||
- name: Archive
|
||||
working-directory: ./build/nx
|
||||
run: |
|
||||
zip -r nx-nzp-nro.zip nzportable.nro nzportable.nacp
|
||||
- name: Upload Artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: nx-nzp-nro
|
||||
path: ./build/nx/nx-nzp-nro.zip
|
||||
path: |
|
||||
./build/nx/nzportable.nro
|
||||
./build/nx/nzportable.nacp
|
||||
Unify-and-Release:
|
||||
runs-on: ubuntu-latest
|
||||
needs: [Compile-VPK, Compile-NRO]
|
||||
|
|
Loading…
Reference in a new issue