Skip to content

Commit 2312fd6

Browse files
committed
ci: standardize quotes in release.yml and ensure token is set for release action
1 parent a21ecec commit 2312fd6

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
workflow_dispatch:
88
inputs:
99
skip_release_please:
10-
description: 'Skip release-please and only run publish'
10+
description: "Skip release-please and only run publish"
1111
required: false
1212
default: false
1313
type: boolean
@@ -28,6 +28,8 @@ jobs:
2828
- name: Release Please
2929
id: release
3030
uses: googleapis/release-please-action@v4
31+
with:
32+
token: ${{ secrets.RELEASE_PLEASE_TOKEN }}
3133

3234
publish:
3335
runs-on: ubuntu-latest
@@ -44,8 +46,8 @@ jobs:
4446
uses: actions/setup-node@v6
4547
with:
4648
node-version: 24
47-
cache: 'pnpm'
48-
registry-url: 'https://registry.npmjs.org'
49+
cache: "pnpm"
50+
registry-url: "https://registry.npmjs.org"
4951

5052
- name: Install dependencies
5153
run: pnpm install --frozen-lockfile

0 commit comments

Comments
 (0)