Skip to content

Commit 2b1a0d9

Browse files
authored
fix: release process (#14)
* support piper-version master * fix release workflow
1 parent b88b62d commit 2b1a0d9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/npm-publish.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99

1010
jobs:
1111
build:
12+
name: Lint
1213
runs-on: ubuntu-latest
1314
steps:
1415
- uses: actions/checkout@v2
@@ -20,6 +21,7 @@ jobs:
2021
- run: npm run lint
2122

2223
publish-gpr:
24+
name: Release
2325
needs: build
2426
runs-on: ubuntu-latest
2527
steps:
@@ -30,7 +32,7 @@ jobs:
3032
cache: 'npm'
3133
registry-url: https://npm.pkg.github.com/
3234
- run: npm ci
33-
- run: npm build
35+
- run: npm run build
3436
- run: npm publish
3537
env:
3638
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 commit comments

Comments
 (0)