Skip to content

Commit

Permalink
fix: only run publish_canary_version on master
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesHenry committed Mar 16, 2020
1 parent 713e9d3 commit 3814d4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -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 }}
Expand Down

0 comments on commit 3814d4e

Please sign in to comment.