File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -230,11 +230,22 @@ jobs:
230
230
name : artifacts-dist-manifest
231
231
path : dist-manifest.json
232
232
233
+ custom-changelog :
234
+ needs :
235
+ - plan
236
+ - build-local-artifacts
237
+ - build-global-artifacts
238
+ uses : ./.github/workflows/changelog.yml
239
+ with :
240
+ plan : ${{ needs.plan.outputs.val }}
241
+ secrets : inherit
242
+
233
243
# Create a Github Release while uploading all files to it
234
244
announce :
235
245
needs :
236
246
- plan
237
247
- host
248
+ - custom-changelog
238
249
# use "always() && ..." to allow us to wait for all publish jobs while
239
250
# still allowing individual publish jobs to skip themselves (for prereleases).
240
251
# "host" however must run to completion, no skipping allowed!
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ ci = ["github"]
14
14
installers = [" shell" ]
15
15
# Target platforms to build apps for (Rust target-triple syntax)
16
16
targets = [" x86_64-unknown-linux-gnu" ]
17
- # This setting determines which custom jobs to run during the "host" phase
17
+ # Host jobs to run in CI
18
18
host-jobs = [" ./changelog" ]
19
19
# Publish jobs to run in CI
20
20
pr-run-mode = " plan"
You can’t perform that action at this time.
0 commit comments