Skip to content

Commit

Permalink
ci: fix condition for creating a release
Browse files Browse the repository at this point in the history
  • Loading branch information
engineervix committed Dec 28, 2023
1 parent 555a2a3 commit 6dba0fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
permissions:
contents: write

if: needs.python_tests.result == 'success' && startsWith( github.ref, 'refs/tags/v' )
if: needs.tests.result == 'success' && startsWith( github.ref, 'refs/tags/v' )

runs-on: ubuntu-22.04

Expand Down

0 comments on commit 6dba0fd

Please sign in to comment.