-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
binstall to speed up workflow and configure git for creating release …
…tags
- Loading branch information
Adam McKee
committed
Jan 2, 2025
1 parent
2d80148
commit 87374b4
Showing
2 changed files
with
9 additions
and
17 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,8 +15,15 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- run: rustup install stable | ||
- uses: swatinem/rust-cache@v2 | ||
- run: cargo install cargo-release | ||
- run: cargo release --no-confirm -x patch | ||
- name: install cargo release | ||
run: | | ||
curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash | ||
cargo binstall --no-confirm cargo-release | ||
- name: cargo release | ||
run: | | ||
git config --global user.name "Adam McKee" | ||
git config --global user.email "[email protected]" | ||
cargo release --no-confirm -x patch | ||
- id: version | ||
run: | | ||
VERSION=$(awk -F ' = ' '$1 ~ /version/ { gsub(/[\"]/, "", $2); printf("%s",$2) }' l3_cli/Cargo.toml) | ||
|
This file was deleted.
Oops, something went wrong.