Skip to content

Commit f668da6

Browse files
authored
Merge pull request #9 from jamdotdev/rui/chore/release-workflow
chore: fixes wrong order of `setup-node` action
2 parents 172e85a + b45af2e commit f668da6

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/publish-package.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,6 @@ jobs:
3232
echo "type=$VERSION_TYPE" >> $GITHUB_OUTPUT
3333
echo "Running a $VERSION_TYPE release"
3434
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-
4235
- name: Configure git access
4336
uses: actions/create-github-app-token@v1
4437
id: app-token
@@ -58,6 +51,13 @@ jobs:
5851
git config user.name github-actions
5952
git config user.email github-actions@github.com
6053
54+
- name: Setup Node
55+
uses: actions/setup-node@v3
56+
with:
57+
node-version: "18.15"
58+
cache: "yarn"
59+
registry-url: "https://registry.npmjs.org"
60+
6161
- name: Install dependencies
6262
run: yarn install --frozen-lockfile --non-interactive
6363

0 commit comments

Comments
 (0)