We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc8e5d8 commit a68bd31Copy full SHA for a68bd31
1 file changed
.github/workflows/release.yaml
@@ -20,6 +20,12 @@ jobs:
20
- name: 📦 Checkout
21
uses: actions/checkout@v6
22
23
+ - name: 🧰 Enable Corepack
24
+ run: |
25
+ corepack enable
26
+ corepack prepare [email protected] --activate
27
+ yarn --version
28
+
29
- name: 🧰 Setup Node
30
uses: actions/setup-node@v6
31
with:
@@ -31,14 +37,11 @@ jobs:
37
- name: 🏷 Get the version from tag
32
38
run: echo "GIT_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
33
39
34
- - name: 🧰 Enable Corepack
35
- run: corepack enable
36
-
40
- name: 🔍 Install dependencies
41
run: yarn install --immutable
42
43
- name: 🏷️ Set version
- run: npm version $GIT_TAG
44
+ run: npm version $GIT_TAG --no-git-tag-version
45
46
- name: 📦 Create tarball
47
run: npm pack
0 commit comments