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 9fc7bc2 commit 4573f82Copy full SHA for 4573f82
.github/workflows/build.yml
@@ -27,6 +27,10 @@ jobs:
27
failBuild: false
28
id: version_check
29
30
+ - name: Bump package.json version (staging)
31
+ if: github.ref == 'refs/heads/staging'
32
+ run: npm -no-git-tag-version version v${{ steps.version_check.outputs.rawVersion }}-beta
33
+
34
- name: Install dependencies
35
run: npm ci
36
@@ -42,7 +46,7 @@ jobs:
42
46
- name: Upload Artifact
43
47
uses: actions/upload-artifact@v2
44
48
with:
45
- name: juno-node-${{ steps.version_check.outputs.releaseVersion }}
49
+ name: juno-node-${{ steps.version_check.outputs.rawVersion }}
50
path: ./juno-node-${{ steps.version_check.outputs.rawVersion }}.tgz
51
52
# Publish release on push to master
0 commit comments