We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 172e85a + b45af2e commit f668da6Copy full SHA for f668da6
.github/workflows/publish-package.yml
@@ -32,13 +32,6 @@ jobs:
32
echo "type=$VERSION_TYPE" >> $GITHUB_OUTPUT
33
echo "Running a $VERSION_TYPE release"
34
35
- - name: Setup Node
36
- uses: actions/setup-node@v3
37
- with:
38
- node-version: "18.15"
39
- cache: "yarn"
40
- registry-url: "https://registry.npmjs.org"
41
-
42
- name: Configure git access
43
uses: actions/create-github-app-token@v1
44
id: app-token
@@ -58,6 +51,13 @@ jobs:
58
51
git config user.name github-actions
59
52
git config user.email github-actions@github.com
60
53
54
+ - name: Setup Node
55
+ uses: actions/setup-node@v3
56
+ with:
57
+ node-version: "18.15"
+ cache: "yarn"
+ registry-url: "https://registry.npmjs.org"
+
61
- name: Install dependencies
62
run: yarn install --frozen-lockfile --non-interactive
63
0 commit comments