-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In CI, allow any branch and provide a fake previous tag name
- Loading branch information
Showing
1 changed file
with
7 additions
and
7 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 |
---|---|---|
|
@@ -99,13 +99,13 @@ jobs: | |
set -ex | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Automated Release Test" | ||
cargo release version --verbose --execute --no-confirm --workspace --exclude zebra-consensus --exclude zebra-utils --exclude zebrad beta | ||
cargo release commit --verbose --execute --no-confirm | ||
cargo release --no-publish --no-verify --no-tag --no-push --verbose --execute --no-confirm --dependent-version fix --package zebra-consensus --package zebra-utils beta | ||
cargo release --no-publish --no-verify --no-tag --no-push --verbose --execute --no-confirm --dependent-version fix --package zebrad patch | ||
cargo release replace --verbose --execute --no-confirm --package zebrad | ||
cargo release commit --verbose --execute --no-confirm | ||
cargo release publish --verbose --dry-run --workspace | ||
cargo release version --verbose --execute --no-confirm --allow-branch '*' --workspace --exclude zebra-consensus --exclude zebra-utils --exclude zebrad beta | ||
cargo release commit --verbose --execute --no-confirm --allow-branch '*' | ||
cargo release --no-publish --no-verify --no-tag --no-push --verbose --execute --no-confirm --allow-branch '*' --prev-tag-name HEAD --dependent-version fix --package zebra-consensus --package zebra-utils beta | ||
cargo release --no-publish --no-verify --no-tag --no-push --verbose --execute --no-confirm --allow-branch '*' --prev-tag-name HEAD --dependent-version fix --package zebrad patch | ||
cargo release replace --verbose --execute --no-confirm --allow-branch '*' --package zebrad | ||
cargo release commit --verbose --execute --no-confirm --allow-branch '*' | ||
cargo release publish --verbose --dry-run --allow-branch '*' --workspace | ||
# TODO: actually do the release here | ||
|