Skip to content

Commit

Permalink
Use single quotes in GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
flyte committed May 7, 2021
1 parent e932471 commit 7733ce7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: poetry run behave -t ~skip mqtt_io/tests/features
publish:
name: Publish to PyPI
if: github.event_name == "release" && github.event.action == "created"
if: github.event_name == 'release' && github.event.action == 'created'
runs-on: ubuntu-20.04
needs: test
steps:
Expand All @@ -48,7 +48,7 @@ jobs:

generate_docs:
name: Generate Documentation
if: github.event_name == "push"
if: github.event_name == 'push'
concurrency: generate_docs
runs-on: ubuntu-20.04
steps:
Expand Down

0 comments on commit 7733ce7

Please sign in to comment.