We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f81d5eb commit adc184eCopy full SHA for adc184e
.github/workflows/release.yml
@@ -19,6 +19,17 @@ jobs:
19
with:
20
submodules: recursive
21
22
+ - name: Print Node.js version before setting the version 16
23
+ run: node -v
24
+
25
+ - name: Set up Node.js ${{ matrix.node-version }}
26
+ uses: actions/setup-node@v3
27
+ with:
28
+ node-version: ${{ matrix.node-version }}
29
30
+ - name: Print Node.js version after setting the version 16
31
32
33
- name: Get the version
34
id: get-version
35
run: echo ::set-output name=version::${GITHUB_REF/refs\/tags\//}
0 commit comments