Skip to content

Commit ce1ef96

Browse files
committed
try version action without containers
1 parent 4ed0cf4 commit ce1ef96

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/bump.yml renamed to .github/workflows/version.yml

+8-3
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,16 @@ jobs:
1515
permissions:
1616
contents: write
1717
pull-requests: write
18-
container:
19-
image: node:22
2018
steps:
2119
- name: Checkout Repo
2220
uses: actions/checkout@v4
21+
with:
22+
fetch-depth: 0
23+
24+
- name: Setup Node.js
25+
uses: actions/setup-node@v4
26+
with:
27+
node-version: 22
2328

2429
- name: Enable Corepack
2530
id: pnpm-setup
@@ -47,6 +52,6 @@ jobs:
4752
uses: changesets/action@v1
4853
with:
4954
version: pnpm run version
50-
title: "chore(root): Version packages"
55+
title: "chore(root): Version packages ${GITHUB_REF##*/}"
5156
env:
5257
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)