Skip to content

Commit

Permalink
Fixed syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Fortuna committed Jan 23, 2021
1 parent 66dea32 commit ac62b38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pip-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
publish-alpha:
runs-on: ubuntu-latest
if: contains(github.ref, "alpha")
if: contains(github.ref, 'alpha')
needs: build
steps:
- name: Publish a Python distribution to PyPI
Expand All @@ -48,7 +48,7 @@ jobs:

publish:
runs-on: ubuntu-latest
if: contains(github.ref, "alpha") != true
if: contains(github.ref, 'alpha') != true
needs: build
steps:
- name: Publish a Python distribution to PyPI
Expand Down

0 comments on commit ac62b38

Please sign in to comment.