From 3814d4e3b3c1552c7601b5d722b2a37c5a570841 Mon Sep 17 00:00:00 2001 From: James Henry Date: Mon, 16 Mar 2020 19:48:42 +0000 Subject: [PATCH] fix: only run publish_canary_version on master --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2ad7cf351e5..8af2a8f2823 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -144,7 +144,7 @@ jobs: name: Publish the latest code as a canary version runs-on: ubuntu-latest needs: [primary_code_validation_and_tests, unit_tests_on_other_node_versions, integration_tests] - # if: github.ref == 'refs/head/master' + if: github.ref == 'refs/heads/master' steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ env.PRIMARY_NODE_VERSION }}