File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed
Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 66 name : ' Build 3DS-RPC'
77 runs-on : ${{ matrix.os }}
88 strategy :
9- fail-fast : false
109 matrix :
1110 os : ['windows-latest', 'macos-latest']
1211 steps :
@@ -31,11 +30,16 @@ jobs:
3130 # For normal commits, upload the created artifact.
3231 - uses : actions/upload-artifact@v4
3332 with :
34- path : dist/3DS-RPC*
33+ name : 3DS-RPC.exe
34+ path : dist/3DS-RPC.exe
35+ - uses : actions/upload-artifact@v4
36+ with :
37+ name : ' 3DS-RPC Mac.zip'
38+ path : ' dist/3DS-RPC Mac.zip'
3539
3640 # If this is a release, additionally attach
3741 # the created applications to the release.
38- - name : " Upload Build"
42+ - name : " Upload Release Build"
3943 if : github.ref_type == 'tag'
4044 uses : softprops/action-gh-release@v2
4145 with :
Original file line number Diff line number Diff line change 11python -m pip install -r requirements.txt
22python -m PyInstaller --onefile --noconsole --clean --add-data " layout;layout" --add-data " api;api" --icon=layout\resources\logo.ico --collect-all " pyreadline3" --collect-all " sqlite3" --collect-all " Cryptodome" --collect-all " PIL" --name=3DS-RPC app.py
3- start dist
Original file line number Diff line number Diff line change 1212# Install requirements.
1313python3 -m pip install -r requirements.txt
1414
15- # Build the macOS bundle, and show the user .
15+ # Build the macOS bundle.
1616python3 setupMac.py py2app -O2
17- open dist
You can’t perform that action at this time.
0 commit comments