mirror of
https://github.com/atmoz/sftp.git
synced 2024-11-17 12:51:33 -05:00
Must use single quotes
https://docs.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions#literals
This commit is contained in:
parent
b1a6c5245f
commit
a41a712b61
1 changed files with 1 additions and 1 deletions
2
.github/workflows/docker-image.yml
vendored
2
.github/workflows/docker-image.yml
vendored
|
@ -28,7 +28,7 @@ jobs:
|
|||
run: tests/run
|
||||
|
||||
push:
|
||||
if: github.event_name == "push" && github.ref == "refs/heads/master"
|
||||
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
|
||||
needs: test
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
|
Loading…
Reference in a new issue