Skip to content

Commit 6e3a5a3

Browse files
committed
scope package, update release workflow
1 parent f0fcb0f commit 6e3a5a3

3 files changed

Lines changed: 121 additions & 132 deletions

File tree

.github/workflows/release.yaml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,25 +13,21 @@ jobs:
1313
release-please:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: google-github-actions/release-please-action@v3
16+
- uses: google-github-actions/release-please-action@v4
1717
id: release
1818
with:
1919
release-type: node
20-
package-name: ${{vars.NPM_MODULE_NAME}}
21-
pull-request-title-pattern: 'chore${scope}: release ${version} [skip-ci]'
2220
# The logic below handles the npm publication:
23-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2422
# these if statements ensure that a publication only occurs when
2523
# a new release is created:
2624
if: ${{ steps.release.outputs.release_created }}
27-
- uses: actions/setup-node@v4
25+
- uses: actions/setup-node@v5
2826
with:
29-
node-version: 20
27+
node-version: 24
3028
registry-url: 'https://registry.npmjs.org'
3129
if: ${{ steps.release.outputs.release_created }}
3230
- run: npm ci
3331
if: ${{ steps.release.outputs.release_created }}
3432
- run: npm publish --provenance --access public
35-
env:
36-
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
3733
if: ${{ steps.release.outputs.release_created }}

0 commit comments

Comments
 (0)