-
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.
- Loading branch information
1 parent
9c3d06c
commit 4a0e0f0
Showing
1 changed file
with
4 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 |
---|---|---|
|
@@ -18,13 +18,6 @@ jobs: | |
with: | ||
rust-version: stable | ||
|
||
- name: Set up GitHub CLI | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
# Configure GitHub CLI with the provided token | ||
gh config set -h github.com token $GH_TOKEN | ||
- name: Install cargo-release | ||
run: cargo install cargo-release | ||
|
||
|
@@ -33,6 +26,10 @@ jobs: | |
CRATE_NAME: blockchain-cli | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
# Set | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Slavik Pastushenko" | ||
# Bump the version and create a GitHub release | ||
cargo release --execute --no-confirm patch | ||
|