Fix condition on CI push stage (#1149)

This commit is contained in:
Adeeb
2020-02-21 10:13:49 -08:00
committed by GitHub
parent fd6301f82b
commit f198624ca2
+1 -1
View File
@@ -31,7 +31,7 @@ jobs:
name: push
runs-on: ubuntu-16.04
needs: build
if: github.ref == 'master' && github.event_name != 'pull_request' && github.repository == 'commaai/openpilot'
if: github.ref == 'refs/heads/master' && github.event_name != 'pull_request' && github.repository == 'commaai/openpilot'
steps:
- uses: actions/download-artifact@v1
with: