Skip to content

Commit 24d1885

Browse files
authored
⬆️ node-version: 23 (#131)
* ⬆️ node-version: 23 * 👷 Annotate git tags
1 parent 6f7ac11 commit 24d1885

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.github/workflows/github-pages.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
version: latest
1818
- uses: actions/setup-node@v4
1919
with:
20-
node-version: 22
20+
node-version: 23
2121
cache: pnpm
2222
- run: pnpm install
2323
- run: pnpm run build-storybook

.github/workflows/node.js.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
version: latest
1818
- uses: actions/setup-node@v4
1919
with:
20-
node-version: 22
20+
node-version: 23
2121
cache: pnpm
2222
- run: pnpm install --frozen-lockfile --strict-peer-dependencies
2323
- run: pnpm run build-storybook

.github/workflows/pnpm-publish.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: actions/setup-node@v4
2424
with:
2525
cache: pnpm
26-
node-version: 22
26+
node-version: 23
2727
- run: pnpm install
2828

2929
- uses: actions/setup-node@v4

.github/workflows/pnpm-version-patch.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ jobs:
2525
2626
git config commit.gpgsign true
2727
git config gpg.format ssh
28+
git config push.gpgSign 'if-asked'
29+
git config tag.gpgSign true
2830
git config user.signingkey 'key::${{ vars.DEPLOY_KEY_PUBLIC }}'
2931
3032
eval `ssh-agent -s`
@@ -33,7 +35,7 @@ jobs:
3335
VERSION=$(pnpm version patch --no-git-tag-version)
3436
3537
git commit --all --message "🔖 $VERSION"
36-
git tag $VERSION
38+
git tag --annotate --message "🔖 $VERSION" $VERSION
3739
git push
3840
git push --tags
3941

0 commit comments

Comments
 (0)