We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1c2e3c commit 33fcb3fCopy full SHA for 33fcb3f
2 files changed
.github/workflows/build.yml
@@ -10,7 +10,11 @@ permissions:
10
11
jobs:
12
build:
13
- runs-on: windows-latest
+ strategy:
14
+ matrix:
15
+ os: [windows-latest, macos-latest]
16
+
17
+ runs-on: ${{ matrix.os }}
18
19
steps:
20
- name: Checkout code
@@ -35,5 +39,7 @@ jobs:
35
39
- name: Upload Artifacts
36
40
uses: actions/upload-artifact@v4
37
41
with:
38
- name: SBE-Portable
- path: release/*.exe
42
+ name: SBE-${{ matrix.os }}
43
+ path: |
44
+ release/*.exe
45
+ release/*.dmg
package.json
@@ -56,6 +56,10 @@
56
"icon": "build/icon.ico",
57
"artifactName": "${productName}.exe"
58
},
59
+ "mac": {
60
+ "target": "dmg",
61
+ "artifactName": "${productName}.dmg"
62
+ },
63
"portable": {
64
"artifactName": "${productName}.exe",
65
"requestExecutionLevel": "user",
0 commit comments