File tree 4 files changed +6
-6
lines changed
4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 11
11
12
12
jobs :
13
13
publish :
14
- if : ${{ github.repository == 'rust-lang/rust-analyzer' || github.event.action == 'workflow_dispatch' }}
14
+ if : ${{ github.repository == 'rust-lang/rust-analyzer' || github.event_name == 'workflow_dispatch' }}
15
15
name : publish
16
16
runs-on : ubuntu-latest
17
17
steps :
Original file line number Diff line number Diff line change 19
19
20
20
jobs :
21
21
rust :
22
- if : ${{ github.repository == 'rust-lang/rust-analyzer' || github.event.action == 'workflow_dispatch' }}
22
+ if : ${{ github.repository == 'rust-lang/rust-analyzer' || github.event_name == 'workflow_dispatch' }}
23
23
name : Rust
24
24
runs-on : ubuntu-latest
25
25
env :
Original file line number Diff line number Diff line change 9
9
10
10
jobs :
11
11
publish-libs :
12
- if : ${{ github.repository == 'rust-lang/rust-analyzer' || github.event.action == 'workflow_dispatch' }}
12
+ if : ${{ github.repository == 'rust-lang/rust-analyzer' || github.event_name == 'workflow_dispatch' }}
13
13
name : publish
14
14
runs-on : ubuntu-latest
15
15
steps :
Original file line number Diff line number Diff line change 22
22
23
23
jobs :
24
24
dist :
25
- if : ${{ github.repository == 'rust-lang/rust-analyzer' || github.event.action == 'workflow_dispatch' }}
25
+ if : ${{ github.repository == 'rust-lang/rust-analyzer' || github.event_name == 'workflow_dispatch' }}
26
26
strategy :
27
27
matrix :
28
28
include :
@@ -139,7 +139,7 @@ jobs:
139
139
path : ./dist
140
140
141
141
dist-x86_64-unknown-linux-musl :
142
- if : ${{ github.repository == 'rust-lang/rust-analyzer' || github.event.action == 'workflow_dispatch' }}
142
+ if : ${{ github.repository == 'rust-lang/rust-analyzer' || github.event_name == 'workflow_dispatch' }}
143
143
name : dist (x86_64-unknown-linux-musl)
144
144
runs-on : ubuntu-latest
145
145
env :
@@ -185,7 +185,7 @@ jobs:
185
185
path : ./dist
186
186
187
187
publish :
188
- if : ${{ github.repository == 'rust-lang/rust-analyzer' || github.event.action == 'workflow_dispatch' }}
188
+ if : ${{ github.repository == 'rust-lang/rust-analyzer' || github.event_name == 'workflow_dispatch' }}
189
189
name : publish
190
190
runs-on : ubuntu-latest
191
191
needs : ["dist", "dist-x86_64-unknown-linux-musl"]
You can’t perform that action at this time.
0 commit comments