File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 48
48
rust_changed : ${{ steps.rust.outputs.any_changed }}
49
49
50
50
info :
51
- timeout-minutes : 3
51
+ timeout-minutes : 3`
52
52
needs : meta
53
53
runs-on : ubuntu-latest
54
54
steps :
65
65
66
66
rust :
67
67
needs : meta
68
- if : needs.meta.outputs.any_changed
68
+ if : needs.meta.outputs.any_changed == 'true'
69
69
runs-on : ubuntu-latest
70
70
container : ghcr.io/linkerd/dev:v43-rust
71
71
permissions :
87
87
88
88
rust-crates :
89
89
needs : meta
90
- if : needs.meta.outputs.cargo_changed
90
+ if : needs.meta.outputs.cargo_changed == 'true'
91
91
timeout-minutes : 20
92
92
runs-on : ubuntu-latest
93
93
container : ghcr.io/linkerd/dev:v43-rust
@@ -102,7 +102,7 @@ jobs:
102
102
103
103
linkerd-install :
104
104
needs : meta
105
- if : needs.meta.outputs.any_changed
105
+ if : needs.meta.outputs.any_changed == 'true'
106
106
timeout-minutes : 20
107
107
runs-on : ubuntu-latest
108
108
steps :
@@ -142,7 +142,7 @@ jobs:
142
142
143
143
merge-dependabot :
144
144
needs : [meta, ok]
145
- if : needs.meta.outputs.any_changed && needs.meta.outputs.is_dependabot == 'true'
145
+ if : needs.meta.outputs.any_changed == 'true' && needs.meta.outputs.is_dependabot == 'true'
146
146
runs-on : ubuntu-latest
147
147
permissions :
148
148
contents : write
Original file line number Diff line number Diff line change 99
99
with :
100
100
path : artifacts
101
101
- run : du -h artifacts/**/*
102
- - if : needs.meta.outputs.publish
102
+ - if : needs.meta.outputs.publish == 'true'
103
103
uses : softprops/action-gh-release@d99959edae48b5ffffd7b00da66dcdb0a33a52ee
104
104
with :
105
105
name : v${{ needs.meta.outputs.version }}
You can’t perform that action at this time.
0 commit comments