Skip to content

Commit 13cfc8f

Browse files
Fix publish action
1 parent 4358d20 commit 13cfc8f

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/npm-publish.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
- uses: actions/setup-node@v1
1616
with:
1717
node-version: 12
18+
- run: npm install
1819
- run: npm test
1920

2021
publish-npm:
@@ -26,7 +27,7 @@ jobs:
2627
with:
2728
node-version: 12
2829
registry-url: https://registry.npmjs.org/
29-
- run: npm ci
30+
- run: npm install
3031
- run: npm publish
3132
env:
32-
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
33+
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@neilbmclaughlin/github-secrets",
3-
"version": "1.1.4",
3+
"version": "1.1.5",
44
"description": "manage git repository secrets",
55
"scripts": {
66
"lint": "standard",

0 commit comments

Comments
 (0)