4
4
branches :
5
5
- main
6
6
paths-ignore :
7
- - ' **.md'
8
- - ' **.spec.js'
9
- - ' .idea'
10
- - ' .gitignore'
11
- - ' .github/**'
12
- - ' !.github/workflows/release.yml'
7
+ - " **.md"
8
+ - " **.spec.js"
9
+ - " .idea"
10
+ - " .gitignore"
11
+ - " .github/**"
12
+ - " !.github/workflows/release.yml"
13
13
pull_request :
14
14
branches :
15
15
- main
16
16
17
-
18
17
concurrency :
19
18
group : release-${{ github.ref }}
20
19
cancel-in-progress : true
21
20
22
-
23
21
defaults :
24
22
run :
25
- shell : ' bash'
26
-
23
+ shell : " bash"
27
24
28
25
jobs :
29
26
pre_job :
@@ -65,11 +62,11 @@ jobs:
65
62
66
63
upload_artifacts :
67
64
name : Build
68
- needs : [ get_metadata, pre_job ]
65
+ needs : [get_metadata, pre_job]
69
66
70
67
strategy :
71
68
matrix :
72
- os : [ macos-10.15, ubuntu-latest, windows-latest ]
69
+ os : [macos-10.15, ubuntu-latest, windows-latest]
73
70
74
71
runs-on : ${{ matrix.os }}
75
72
@@ -106,7 +103,7 @@ jobs:
106
103
toolchain : stable
107
104
108
105
- name : Install pyoxidizer fork
109
- run : cargo install --git https://github.com/audapolis/PyOxidizer.git --rev 3f3980d81e67928db83df20b9c1aefa3c8235866 pyoxidizer
106
+ run : cargo install pyoxidizer
110
107
111
108
- name : Install Poetry
112
109
uses : snok/install-poetry@v1
@@ -119,7 +116,7 @@ jobs:
119
116
- uses : actions/setup-node@v2
120
117
with :
121
118
node-version : 16
122
- cache : ' npm'
119
+ cache : " npm"
123
120
cache-dependency-path : app/package-lock.json
124
121
125
122
- name : Install dependencies
@@ -171,7 +168,7 @@ jobs:
171
168
mac_certs_password : ${{ secrets.mac_certs_password }}
172
169
173
170
finalize :
174
- needs : [ upload_artifacts ]
171
+ needs : [upload_artifacts]
175
172
if : always()
176
173
# && ${{ needs.upload_artifacts.result == 'skipped' || needs.upload_artifacts.result == 'success' }}
177
174
0 commit comments