Skip to content

Commit bc08913

Browse files
Individually specify artifact names
1 parent a6661ca commit bc08913

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.github/workflows/actions.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ jobs:
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:

scripts/build.bat

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
python -m pip install -r requirements.txt
22
python -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

scripts/build.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,5 @@ fi
1212
# Install requirements.
1313
python3 -m pip install -r requirements.txt
1414

15-
# Build the macOS bundle, and show the user.
15+
# Build the macOS bundle.
1616
python3 setupMac.py py2app -O2
17-
open dist

0 commit comments

Comments
 (0)