Skip to content

Commit

Permalink
Update continuous_delivery.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
shaharbar1 authored Aug 21, 2024
1 parent a75d3dd commit 65f484a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/continuous_delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
fi
- name: Verify whether to publish
run: |
if (( "${{ matrix.python-version }}" != "3.8" )) || [ "${{ steps.version_check.outcome }}" != "success" ]; then
if [ "${{ matrix.python-version }}" != "3.8" ] || [ "${{ steps.version_check.outcome }}" != "success" ]; then
exit 0
fi
- name: Build and publish to pypi
Expand Down

0 comments on commit 65f484a

Please sign in to comment.