@@ -233,9 +233,9 @@ inherits = "release"
233
233
# Config for 'cargo dist'
234
234
[workspace .metadata .dist ]
235
235
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
236
- cargo-dist-version = " 0.18.0 "
236
+ cargo-dist-version = " 0.22.1 "
237
237
# CI backends to support
238
- ci = [ " github" ]
238
+ ci = " github"
239
239
# The installers to generate for each app
240
240
installers = [" shell" , " powershell" ]
241
241
# The archive format to use for windows builds (defaults .zip)
@@ -266,21 +266,23 @@ targets = [
266
266
auto-includes = false
267
267
# Whether cargo-dist should create a GitHub Release or use an existing draft
268
268
create-release = true
269
- # Publish jobs to run in CI
269
+ # Which actions to run on pull requests
270
270
pr-run-mode = " skip"
271
271
# Whether CI should trigger releases with dispatches instead of tag pushes
272
272
dispatch-releases = true
273
- # The stage during which the GitHub Release should be created
273
+ # Which phase cargo-dist should use to create the GitHub release
274
274
github-release = " announce"
275
275
# Whether CI should include auto-generated code to build local artifacts
276
276
build-local-artifacts = false
277
277
# Local artifacts jobs to run in CI
278
278
local-artifacts-jobs = [" ./build-binaries" , " ./build-docker" ]
279
279
# Publish jobs to run in CI
280
280
publish-jobs = [" ./publish-pypi" , " ./publish-wasm" ]
281
- # Announcement jobs to run in CI
281
+ # Post-announce jobs to run in CI
282
282
post-announce-jobs = [" ./notify-dependents" , " ./publish-docs" , " ./publish-playground" ]
283
283
# Custom permissions for GitHub Jobs
284
284
github-custom-job-permissions = { "build-docker" = { packages = " write" , contents = " read" }, "publish-wasm" = { contents = " read" , id-token = " write" , packages = " write" } }
285
285
# Whether to install an updater program
286
286
install-updater = false
287
+ # Path that installers should place binaries in
288
+ install-path = " CARGO_HOME"
0 commit comments