We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51e73be commit 7e210e1Copy full SHA for 7e210e1
.github/workflows/actions.yml
@@ -18,6 +18,11 @@ jobs:
18
- name: "Build"
19
if: matrix.os == 'windows-latest'
20
run: ./scripts/build.bat
21
+ - uses: actions/upload-artifact@v4
22
+ if: matrix.os == 'windows-latest'
23
+ with:
24
+ name: 3DS-RPC.exe
25
+ path: dist/3DS-RPC.exe
26
27
# macOS Build
28
@@ -26,13 +31,8 @@ jobs:
31
./scripts/build.sh &&
32
cd ./dist &&
33
zip -yr "3DS-RPC Mac.zip" 3DS-RPC.app/
29
-
30
- # For normal commits, upload the created artifact.
- - uses: actions/upload-artifact@v4
- with:
- name: 3DS-RPC.exe
34
- path: dist/3DS-RPC.exe
35
- uses: actions/upload-artifact@v4
+ if: matrix.os == 'macos-latest'
36
with:
37
name: '3DS-RPC Mac.zip'
38
path: 'dist/3DS-RPC Mac.zip'
0 commit comments