Skip to content

Commit

Permalink
Build separate artefacts for pop-fe and pop-fe-ps3
Browse files Browse the repository at this point in the history
Signed-off-by: Ronnie Sahlberg <[email protected]>
  • Loading branch information
sahlberg committed Jun 18, 2022
1 parent d533046 commit 6ee0de6
Showing 1 changed file with 20 additions and 5 deletions.
25 changes: 20 additions & 5 deletions .github/workflows/py.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,18 @@ jobs:
- name: Build pop-fe-ps3
run: |
pyinstaller --add-data "PS3LOGO.DAT;." --add-data "pop-fe-ps3.ui;." pop-fe-ps3.py --hidden-import pop-fe --hidden-import pygubu.builder.tkstdwidgets --hidden-import pygubu.builder.ttkstdwidgets --hidden-import pygubu.builder.widgets.pathchooserinput
- name: Update dist
- name: Update dist/pop-fe
run: |
mkdir dist/pop-fe/atracdenc
mkdir dist/pop-fe/atracdenc/src
cp dist/binmerge/binmerge.exe dist/pop-fe/.
cp dist/cue2cu2/cue2cu2.exe dist/pop-fe/.
cp dist/pkg/pkg.exe dist/pop-fe/.
cp dist/pkg/pkgcrypt*.pyd dist/pop-fe/.
cp dist/sign3/sign3.exe dist/pop-fe/.
cp atracdenc.exe dist/pop-fe/atracdenc/src/.
cp ffmpeg.exe dist/pop-fe/.
- name: Update dist/pop-fe-ps3
run: |
mkdir dist/pop-fe-ps3/atracdenc
mkdir dist/pop-fe-ps3/atracdenc/src
Expand All @@ -74,9 +85,13 @@ jobs:
cp dist/sign3/sign3.exe dist/pop-fe-ps3/.
cp atracdenc.exe dist/pop-fe-ps3/atracdenc/src/.
cp ffmpeg.exe dist/pop-fe-ps3/.
ls -R dist
- name: Upload artefacts
- name: Upload pop-fe artefact
uses: actions/upload-artifact@v2
with:
name: pop-fe
path: dist/pop-fe
- name: Upload pop-fe-ps3 artefact
uses: actions/upload-artifact@v2
with:
name: assets-for-download
path: dist
name: pop-fe-ps3
path: dist/pop-fe-ps3

0 comments on commit 6ee0de6

Please sign in to comment.