Skip to content

Commit

Permalink
fix: Typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewjw authored Mar 22, 2023
1 parent c28cb8a commit e90a5dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
git config --global user.name "Andrew Wilkinson"
export CURRENT=$(semantic-release print-version --current)
export VERSION=$(semantic-release print-version)
if [ "$CURRENT" -neq "$VERSION" ]; then
if [ "$CURRENT" -ne "$VERSION" ]; then
PYPI_TOKEN=${{ secrets.PYPI_TOKEN }} semantic-release publish
DOCKER_TOKEN=${{ secrets.DOCKER_TOKEN }} TAG=$VERSION ./docker_push.sh
fi
Expand Down

0 comments on commit e90a5dd

Please sign in to comment.