Skip to content

Commit ae7143b

Browse files
committed
npx create-release-plan-setup@latest --update
1 parent 9f439d0 commit ae7143b

File tree

2 files changed

+3
-12
lines changed

2 files changed

+3
-12
lines changed

.github/workflows/plan-release.yml

+2-7
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ jobs:
3737
needs: check-plan
3838
permissions:
3939
contents: write
40+
issues: read
4041
pull-requests: write
4142
outputs:
4243
explanation: ${{ steps.explanation.outputs.text }}
@@ -54,19 +55,13 @@ jobs:
5455
- uses: actions/setup-node@v4
5556
with:
5657
node-version: 18
57-
58-
- uses: pnpm/action-setup@v3
59-
with:
60-
version: 8
58+
- uses: pnpm/action-setup@v4
6159
- run: pnpm install --frozen-lockfile
62-
6360
- name: "Generate Explanation and Prep Changelogs"
6461
id: explanation
6562
run: |
6663
set +e
67-
6864
pnpm release-plan prepare 2> >(tee -a release-plan-stderr.txt >&2)
69-
7065
7166
if [ $? -ne 0 ]; then
7267
echo 'text<<EOF' >> $GITHUB_OUTPUT

.github/workflows/publish.yml

+1-5
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,10 @@ jobs:
4949
node-version: 18
5050
# This creates an .npmrc that reads the NODE_AUTH_TOKEN environment variable
5151
registry-url: 'https://registry.npmjs.org'
52-
53-
- uses: pnpm/action-setup@v3
54-
with:
55-
version: 8
52+
- uses: pnpm/action-setup@v4
5653
- run: pnpm install --frozen-lockfile
5754
- name: npm publish
5855
run: pnpm release-plan publish
59-
6056
env:
6157
GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
6258
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)