-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
40 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
[workspace] | ||
members = ["cargo:."] | ||
|
||
# Config for 'dist' | ||
[dist] | ||
# The preferred dist version to use in CI (Cargo.toml SemVer syntax) | ||
cargo-dist-version = "0.27.0" | ||
# The archive format to use for non-windows builds (defaults .tar.xz) | ||
unix-archive = ".tar.gz" | ||
# CI backends to support | ||
ci = "github" | ||
# Whether CI should include auto-generated code to build local artifacts | ||
build-local-artifacts = false | ||
# Whether CI should trigger releases with dispatches instead of tag pushes | ||
dispatch-releases = true | ||
# Which actions to run on pull requests | ||
pr-run-mode = "plan" | ||
# Which phase dist should use to create the GitHub release | ||
github-release = "announce" | ||
# The installers to generate for each app | ||
installers = ["shell", "powershell", "homebrew"] | ||
# Target platforms to build apps for (Rust target-triple syntax) | ||
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"] | ||
# Local artifacts jobs to run in CI | ||
local-artifacts-jobs = ["./build-binaries"] | ||
# Publish jobs to run in CI | ||
publish-jobs = ["./publish", "homebrew"] | ||
# A GitHub repo to push Homebrew formulas to | ||
tap = "j178/homebrew-tap" | ||
# Customize the Homebrew formula name | ||
formula = "prefligit" | ||
# Whether to install an updater program | ||
install-updater = false | ||
# Path that installers should place binaries in | ||
install-path = ["$XDG_BIN_HOME/", "$XDG_DATA_HOME/../bin", "~/.local/bin"] |