Skip to content

Commit

Permalink
fix semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
yehoshuadimarsky committed Nov 24, 2024
1 parent 881d975 commit 32de446
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ jobs:
- name: Verify version matches in code and release
run: |
VER=$(uv run python -c 'import bcpandas; print(bcpandas.__version__)')
if [[ $VER != $RELEASE_VAR ]] then;
echo "version does not match released version, needs a bump!" && exit 1;
if [[ $VER != $RELEASE_VAR ]] then
echo "version does not match released version, needs a bump!" && exit 1
fi
env:
RELEASE_VAR: ${{ github.event.release.tag_name }}
Expand Down

0 comments on commit 32de446

Please sign in to comment.