File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -27,12 +27,14 @@ jobs:
2727 node-version : 24
2828 registry-url : ' https://registry.npmjs.org'
2929 - run : bun install --frozen-lockfile
30- - name : Verify Harmony build tools
31- run : |
32- command -v hvigorw >/dev/null 2>&1 || (echo "Missing hvigorw in the Harmony container image." >&2; exit 1)
33- command -v ohpm >/dev/null 2>&1 || (echo "Missing ohpm in the Harmony container image." >&2; exit 1)
3430 - name : Build Harmony HAR
3531 run : npm run build:harmony-har -- --build-mode release
3632 - name : Verify Harmony HAR artifact
3733 run : test -f harmony/pushy.har
38- - run : npm publish --provenance --access public
34+ - name : Publish to npm
35+ run : |
36+ if [[ "${{ github.event.release.tag_name }}" == *"beta"* ]]; then
37+ npm publish --provenance --access public --tag beta
38+ else
39+ npm publish --provenance --access public
40+ fi
You can’t perform that action at this time.
0 commit comments