File tree 1 file changed +7
-5
lines changed
1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 12
12
strategy :
13
13
matrix :
14
14
# ubuntu-latest if you want to build for Linux
15
- os : [macos-latest, windows-latest]
15
+ # windows-latest if you want to build for Windows
16
+ os : [macos-latest]
16
17
17
18
steps :
18
19
- name : Check out Git repository
30
31
# if: matrix.os == 'ubuntu-latest'
31
32
# run: npm run build:linux
32
33
34
+ # - name: build-win
35
+ # if: matrix.os == 'windows-latest'
36
+ # run: npm run build:win
37
+
33
38
# Decode and import Developer ID Certificate
34
39
- name : Set up Code Signing Certificate for macOS
35
40
if : matrix.os == 'macos-latest'
@@ -47,13 +52,10 @@ jobs:
47
52
APPLE_PASSWORD : ${{ secrets.APPLE_PASSWORD }}
48
53
APPLE_TEAM_ID : ${{ secrets.APPLE_TEAM_ID }}
49
54
APP_BUNDLE_ID : ${{ secrets.APP_BUNDLE_ID }}
55
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
50
56
if : matrix.os == 'macos-latest'
51
57
run : npm run build:mac
52
58
53
- - name : build-win
54
- if : matrix.os == 'windows-latest'
55
- run : npm run build:win
56
-
57
59
- name : release
58
60
uses : softprops/action-gh-release@v1
59
61
with :
You can’t perform that action at this time.
0 commit comments