Skip to content

Commit

Permalink
Update pypi-publish.yml
Browse files Browse the repository at this point in the history
Added the missing "then" that caused a syntax error
  • Loading branch information
manodeep committed Oct 3, 2023
1 parent 1c41e82 commit 7ab8964
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ jobs:
export corrfunc_version=`python -c "import Corrfunc; print(Corrfunc.__version__)"`
echo "Installed Corrfunc version = ${corrfunc_version}"
echo "GitHub Release name = ${{ github.event.release.tag_name }}"
if [[ "$corrfunc_version" != "${{ github.event.release.tag_name }}" ]]; exit 1; fi
if [[ "$corrfunc_version" != "${{ github.event.release.tag_name }}" ]]; then exit 1; fi

0 comments on commit 7ab8964

Please sign in to comment.