Skip to content

Commit efb140a

Browse files
committed
chore: fix release build
1 parent c8f0e2c commit efb140a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,22 @@ jobs:
2323
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
2424
with:
2525
node-version: 20
26+
always-auth: true
27+
registry-url: 'https://registry.npmjs.org'
2628

2729
- name: Install dependencies
2830
run: yarn
2931

3032
- name: Run checks
31-
run: yarn run test && yarn lint && yarn run build
33+
run: yarn run test && yarn lint && yarn build
3234

3335
- uses: google-github-actions/release-please-action@v3
3436
id: release
3537
with:
3638
release-type: node
3739
package-name: action-docs
3840
changelog-types: '[{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"chore","section":"Miscellaneous","hidden":false},{"type":"build","section":"Miscellaneous","hidden":true}]'
41+
3942
- name: Publish to NPM
4043
run: yarn publish
4144
if: ${{ steps.release.outputs.release_created }}

0 commit comments

Comments
 (0)