From f198624ca2c3b599c241964cbdb0be89fd542b3b Mon Sep 17 00:00:00 2001 From: Adeeb <8762862+quillford@users.noreply.github.com> Date: Fri, 21 Feb 2020 10:13:49 -0800 Subject: [PATCH] Fix condition on CI push stage (#1149) --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 7f36eadfd2..33cdfda1e2 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -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: