Skip to content

Commit

Permalink
Fix script name
Browse files Browse the repository at this point in the history
  • Loading branch information
ThetaSinner committed Jun 6, 2024
1 parent 2919468 commit f398b1f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,19 @@ jobs:

- name: Test bump-holochain.sh
run: |
MINOR_VERSION=$(./scripts/bump.sh main-0.1 false | tail -n 1)
MINOR_VERSION=$(./scripts/bump-holochain.sh main-0.1 false | tail -n 1)
if [[ "$MINOR_VERSION" != "0.1.8" ]]; then
echo "bump.sh failed to find 0.1.8: [${MINOR_VERSION}]"
exit 1
fi
RC_VERSION=$(./scripts/bump.sh main-0.1-rc false | tail -n 1)
RC_VERSION=$(./scripts/bump-holochain.sh main-0.1-rc false | tail -n 1)
if [[ "$RC_VERSION" != "0.1.7-rc.0" ]]; then
echo "bump.sh failed to find 0.1.7-rc.0: [${RC_VERSION}]"
exit 1
fi
CURRENT_VERSION=$(./scripts/bump.sh main false | tail -n 1)
CURRENT_VERSION=$(./scripts/bump-holochain.sh main false | tail -n 1)
if [[ "$CURRENT_VERSION" != 0.4.*dev* ]]; then
echo "bump.sh failed to find current version: [${CURRENT_VERSION}]"
exit 1
Expand Down

0 comments on commit f398b1f

Please sign in to comment.