mirror of
https://github.com/nzp-team/quakespasm.git
synced 2024-11-10 06:32:03 +00:00
YML: ..don't make it at root though
This commit is contained in:
parent
606fb0921a
commit
8a1a51e0d3
1 changed files with 5 additions and 5 deletions
10
.github/workflows/build-and-release.yml
vendored
10
.github/workflows/build-and-release.yml
vendored
|
@ -16,11 +16,11 @@ jobs:
|
||||||
git clone https://github.com/bythos14/SceShaccCgExt.git
|
git clone https://github.com/bythos14/SceShaccCgExt.git
|
||||||
cd SceShaccCgExt
|
cd SceShaccCgExt
|
||||||
mkdir build && cd build
|
mkdir build && cd build
|
||||||
cmake .. && make -j$(numproc) install
|
cmake .. && make -j12 install
|
||||||
- name: Build
|
- name: Build
|
||||||
working-directory: ./
|
working-directory: ./
|
||||||
run: |
|
run: |
|
||||||
make -j$(numproc) -f Makefile.vita
|
make -j12 -f Makefile.vita
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
|
@ -36,7 +36,7 @@ jobs:
|
||||||
- name: Build
|
- name: Build
|
||||||
working-directory: ./
|
working-directory: ./
|
||||||
run: |
|
run: |
|
||||||
make -j$(numproc) -f Makefile.nx
|
make -j12 -f Makefile.nx
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
|
@ -90,7 +90,7 @@ jobs:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||||
asset_path: ./vita-nzp-vpk.zip
|
asset_path: ./vita-nzp-vpk
|
||||||
asset_name: vita-nzp-vpk.zip
|
asset_name: vita-nzp-vpk.zip
|
||||||
asset_content_type: application/zip
|
asset_content_type: application/zip
|
||||||
- name: Upload NX Archive
|
- name: Upload NX Archive
|
||||||
|
@ -99,7 +99,7 @@ jobs:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||||
asset_path: ./nx-nzp-nro.zip
|
asset_path: ./nx-nzp-nro
|
||||||
asset_name: nx-nzp-nro.zip
|
asset_name: nx-nzp-nro.zip
|
||||||
asset_content_type: application/zip
|
asset_content_type: application/zip
|
||||||
- name: Publish Release
|
- name: Publish Release
|
||||||
|
|
Loading…
Reference in a new issue