-
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2765 from informalsystems/add-hub-to-release-pipe…
…line Add the `hub` dependency to release CI
- Loading branch information
Showing
2 changed files
with
2 additions
and
0 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 |
---|---|---|
|
@@ -37,4 +37,5 @@ jobs: | |
git config --global user.email "[email protected]" | ||
- name: Prepare release | ||
run: | | ||
sudo apt-get update && sudo apt-get install -y hub | ||
./script/release-prepare.sh |
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 |
---|---|---|
|
@@ -29,6 +29,7 @@ jobs: | |
GITHUB_TOKEN: ${{ secrets.APALACHE_BOT_TOKEN }} | ||
HEAD_REF: ${{ github.head_ref }} | ||
run: | | ||
sudo apt-get update && sudo apt-get install -y hub | ||
git config --global user.name "$GITHUB_ACTOR" | ||
git config --global user.email "[email protected]" | ||
git checkout HEAD~1 | ||
|