File tree 1 file changed +11
-5
lines changed
1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -162,7 +162,9 @@ jobs:
162
162
if-no-files-found : error
163
163
164
164
release :
165
- needs : [init, build]
165
+ needs :
166
+ - init
167
+ - build
166
168
runs-on : ubuntu-latest
167
169
steps :
168
170
- name : Setup | Checkout
@@ -210,14 +212,18 @@ jobs:
210
212
run : cargo publish --token ${{ secrets.CRATES_IO_TOKEN }}
211
213
212
214
pages :
213
- needs : publish
214
- if : steps.state.outputs.prerelease == "false"
215
+ needs :
216
+ - init
217
+ - publish
218
+ if : needs.init.outputs.prerelease == "false"
215
219
uses : ./.github/workflows/pages.yaml
216
220
217
221
brew :
218
- needs : publish
222
+ needs :
223
+ - init
224
+ - publish
219
225
runs-on : ubuntu-latest
220
- if : steps.state .outputs.prerelease == "false"
226
+ if : needs.init .outputs.prerelease == "false"
221
227
222
228
steps :
223
229
- uses : mislav/bump-homebrew-formula-action@v3
You can’t perform that action at this time.
0 commit comments