0
0
Fork 0
mirror of https://github.com/atmoz/sftp.git synced 2024-11-17 12:51:33 -05:00

Fix push condition

This commit is contained in:
Adrian Dvergsdal 2020-07-17 01:04:42 +02:00
parent 2198c24da3
commit b1a6c5245f
No known key found for this signature in database
GPG key ID: C1E9E2D9552A42D2

View file

@ -28,7 +28,7 @@ jobs:
run: tests/run
push:
if: ${{ github.event_name == "push" && github.ref == "master" }}
if: github.event_name == "push" && github.ref == "refs/heads/master"
needs: test
runs-on: ubuntu-latest