Skip to content

Commit

Permalink
Fix version bump in homebrew PRs (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
qboileau authored Sep 17, 2024
1 parent 01c3bfb commit 3131abb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,15 +83,17 @@ jobs:
gh version
gh auth status
export APP_VERSION=${APP_VERSION#v} # remove 'v' prefix
export BRANCH=update_console-plus_$APP_VERSION
echo BRANCH $BRANCH
export BASE_BRANCH=main
echo BASE_BRANCH $BASE_BRANCH
VERIF_SHA=$(curl -s -L https://github.com/conduktor/ctl/archive/refs/tags/${APP_VERSION}.tar.gz | sha256sum | cut -f 1 -d " ")
VERIF_SHA=$(curl -s -L https://github.com/conduktor/ctl/archive/refs/tags/v${APP_VERSION}.tar.gz | sha256sum | cut -f 1 -d " ")
echo VERIF_SHA $VERIF_SHA
export TITLE="Bump conduktor-ctl version to ${APP_VERSION}"
export BODY="Release https://github.com/conduktor/ctl/releases/tag/${APP_VERSION}"
export BODY="Release https://github.com/conduktor/ctl/releases/tag/v${APP_VERSION}"
export MESSAGE="${TITLE} .${BODY}"
echo TITLE $TITLE
echo BODY $BODY
Expand Down

0 comments on commit 3131abb

Please sign in to comment.