We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 072602d commit 1d08860Copy full SHA for 1d08860
.github/workflows/release.yml
@@ -28,15 +28,17 @@ jobs:
28
fetch-depth: 0
29
persist-credentials: false
30
31
- - name: Set up Node.js
32
- uses: actions/setup-node@v5
+ - name: Set up Node
+ uses: actions/setup-node@v6
33
+ with:
34
+ node-version: 24
35
36
- name: Install dependencies
37
run: npm ci && npm run build
38
39
- name: Create release pull request or publish to npm
40
id: changesets
- uses: changesets/action@master
41
+ uses: changesets/action@v1
42
with:
43
title: Release Tracking
44
# This expects you to have a script called release which does a build for your packages and calls changeset publish
0 commit comments