We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c0e4d8 commit f3a9eaaCopy full SHA for f3a9eaa
1 file changed
.github/workflows/npm-publish.yml
@@ -12,11 +12,10 @@ jobs:
12
runs-on: ubuntu-latest
13
steps:
14
- uses: actions/checkout@v6
15
- - uses: actions/setup-node@v6
16
- with:
17
- node-version: 24
+ - uses: jdx/mise-action@v2
18
- run: ./build_and_test.sh
19
-
+ env:
+ MISE_NODE_VERSION: 24
20
publish-npm:
21
needs: build
22
@@ -29,7 +28,7 @@ jobs:
29
28
MISE_NODE_VERSION: 24
30
- name: Determine version from git tag
31
id: version
32
- run: echo ::set-output name=tag::${GITHUB_REF#refs/*/}
+ run: echo "tag=${GITHUB_REF#refs/*/}" >> "$GITHUB_OUTPUT"
33
- name: set version
34
run: |
35
./updateVersion.sh ${{ steps.version.outputs.tag }}
0 commit comments