We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c7270b commit 713e9d3Copy full SHA for 713e9d3
.github/workflows/ci.yml
@@ -17,6 +17,10 @@ jobs:
17
runs-on: ubuntu-latest
18
steps:
19
- uses: actions/checkout@v2
20
+
21
+ - name: echo github.ref
22
+ run: echo ${{ github.ref }}
23
24
- name: Use Node.js ${{ env.PRIMARY_NODE_VERSION }}
25
uses: actions/setup-node@v1
26
with:
@@ -140,9 +144,9 @@ jobs:
140
144
name: Publish the latest code as a canary version
141
145
142
146
needs: [primary_code_validation_and_tests, unit_tests_on_other_node_versions, integration_tests]
143
- if: github.ref == 'refs/head/master'
147
+ # if: github.ref == 'refs/head/master'
148
- - uses: actions/checkout@v1
149
+ - uses: actions/checkout@v2
150
151
152
0 commit comments