Skip to content

Commit

Permalink
Replace Hub with GH CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
alan-ghelardi committed Nov 4, 2024
1 parent aedf6fc commit 5792a47
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

### Changed

- Replace hub with gh in the release script: [#42](https://github.com/nubank/vessel/pull/42).

### Fixed

- Detect and report errors reading mergeable sources: [#41](https://github.com/nubank/vessel/pull/41).

## [0.2.157] - 2024-10-16

### Fixed
Expand Down
11 changes: 6 additions & 5 deletions build/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,12 @@ function package_up() {
}

function create_release() {
hub release create $version \
--message "Vessel $version" \
--message "A comprehensive changelog can be found at: https://github.com/nubank/vessel/blob/${version}/CHANGELOG.md" \
--attach $dist/linux-installer-${version}.sh#"Linux installer" \
--attach $dist/vessel-${version}.tar.gz#"Vessel archives"
gh release create $version \
--verify-tag \
--title "Vessel $version" \
--notes "A comprehensive changelog can be found at: https://github.com/nubank/vessel/blob/${version}/CHANGELOG.md" \
$dist/linux-installer-${version}.sh#"Linux installer" \
$dist/vessel-${version}.tar.gz#"Vessel archives"
}

dirty=$(git status --porcelain)
Expand Down

0 comments on commit 5792a47

Please sign in to comment.