Skip to content

Commit a0cba22

Browse files
Merge pull request #195 from sebgroup/develop
fix: update pipeline with npm token
2 parents 67c1008 + 032132e commit a0cba22

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,13 @@ jobs:
1313
- uses: actions/setup-node@v1
1414
with:
1515
node-version: 12
16-
registry-url: https://registry.npmjs.org/:_authToken=$NPM_TOKEN
1716
- run: npm ci
1817
- run: npm test
1918
- run: npm run build
19+
- run: npm config set //registry.npmjs.org/:_authToken=$NPM_TOKEN
20+
env:
21+
CI: true
22+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
2023
- run: npm run semantic-release
2124
env:
2225
CI: true

0 commit comments

Comments
 (0)