mirror of https://github.com/red-prig/fpPS4.git
Add artifacts
This commit is contained in:
parent
2a6d49eaec
commit
be1df2c0f8
|
@ -29,14 +29,23 @@ jobs:
|
||||||
- name: Compile
|
- name: Compile
|
||||||
shell: cmd
|
shell: cmd
|
||||||
working-directory: ./
|
working-directory: ./
|
||||||
run: lazbuild -B fpPS4.lpi > nul
|
run: |
|
||||||
|
lazbuild -B fpPS4.lpi > nul
|
||||||
|
strip fpPS4.exe
|
||||||
|
|
||||||
|
- name: Upload artifacts
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
||||||
|
with:
|
||||||
|
name: fpPS4
|
||||||
|
path: fpPS4.exe
|
||||||
|
if-no-files-found: warn
|
||||||
|
|
||||||
- name: Pack
|
- name: Pack
|
||||||
shell: cmd
|
shell: cmd
|
||||||
working-directory: ./
|
working-directory: ./
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
run: |
|
run: |
|
||||||
strip fpPS4.exe
|
|
||||||
mkdir sce_module
|
mkdir sce_module
|
||||||
echo "put libSceNgs2.prx here" > sce_module/info.txt
|
echo "put libSceNgs2.prx here" > sce_module/info.txt
|
||||||
zip -9 -qq -r "fpPS4_%GITHUB_REF_NAME%.zip" "fpPS4.exe" "shaders/*.spv" "sce_module/info.txt"
|
zip -9 -qq -r "fpPS4_%GITHUB_REF_NAME%.zip" "fpPS4.exe" "shaders/*.spv" "sce_module/info.txt"
|
||||||
|
|
Loading…
Reference in New Issue