Skip to content

Commit 3814d4e

Browse files
committed
fix: only run publish_canary_version on master
1 parent 713e9d3 commit 3814d4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: .github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ jobs:
144144
name: Publish the latest code as a canary version
145145
runs-on: ubuntu-latest
146146
needs: [primary_code_validation_and_tests, unit_tests_on_other_node_versions, integration_tests]
147-
# if: github.ref == 'refs/head/master'
147+
if: github.ref == 'refs/heads/master'
148148
steps:
149149
- uses: actions/checkout@v2
150150
- name: Use Node.js ${{ env.PRIMARY_NODE_VERSION }}

0 commit comments

Comments
 (0)