Skip to content

Commit 0228707

Browse files
committed
Enable builds on tags
1 parent 3699ee9 commit 0228707

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
node utils/retry npm test
5858
5959
- name: Deploy
60-
if: startsWith(github.ref, 'refs/tags/test-v')
60+
if: startsWith(github.ref, 'refs/tags/v')
6161
env:
6262
node_pre_gyp_bucket: ${{ secrets.node_pre_gyp_bucket }}
6363
node_pre_gyp_accessKeyId: ${{ secrets.node_pre_gyp_accessKeyId }}
@@ -107,19 +107,19 @@ jobs:
107107
# but it's not, because the CI runner for windows doesn't wait for each step as listed here
108108
# and it treats each additional step past the first as an orphaned process.
109109
- name: Deploy (Dependencies)
110-
if: startsWith(github.ref, 'refs/tags/test-v')
110+
if: startsWith(github.ref, 'refs/tags/v')
111111
run: npm install -g node-pre-gyp aws-sdk
112112

113113
- name: Deploy (Clean)
114-
if: startsWith(github.ref, 'refs/tags/test-v')
114+
if: startsWith(github.ref, 'refs/tags/v')
115115
run: node lifecycleScripts\clean
116116

117117
- name: Deploy (Package)
118-
if: startsWith(github.ref, 'refs/tags/test-v')
118+
if: startsWith(github.ref, 'refs/tags/v')
119119
run: node-pre-gyp package
120120

121121
- name: Deploy (Publish)
122-
if: startsWith(github.ref, 'refs/tags/test-v')
122+
if: startsWith(github.ref, 'refs/tags/v')
123123
env:
124124
node_pre_gyp_bucket: ${{ secrets.node_pre_gyp_bucket }}
125125
node_pre_gyp_accessKeyId: ${{ secrets.node_pre_gyp_accessKeyId }}

0 commit comments

Comments
 (0)