Skip to content

Commit 413b7d2

Browse files
committed
fix: use new release pipeline workflow
1 parent c16d36d commit 413b7d2

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Nuxt [Validate]
22
env:
3-
node_version: 20
3+
node_version: 24
44
concurrency:
55
group: nuxt-laravel-echo-ci
66
cancel-in-progress: false

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Nuxt [Docs]
22
env:
3-
node_version: 20
3+
node_version: 24
44
concurrency:
55
group: "pages"
66
cancel-in-progress: false

.github/workflows/prerelease.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
name: Nuxt [Pre-Release]
22
env:
3-
node_version: 20
3+
node_version: 24
4+
node_registry: https://registry.npmjs.org/
45
changelog_user: Github CI
56
changelog_email: artem@manchenkoff.me
6-
NODE_AUTH_TOKEN: ${{ secrets.npm_token }}
7-
NODE_REGISTRY: https://registry.npmjs.org/
87
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
98
concurrency:
109
group: nuxt-laravel-echo-release
@@ -43,7 +42,7 @@ jobs:
4342
uses: actions/setup-node@v4
4443
with:
4544
node-version: ${{ env.node_version }}
46-
registry-url: ${{ env.NODE_REGISTRY }}
45+
registry-url: ${{ env.node_registry }}
4746
- name: Enable corepack
4847
run: corepack enable
4948
- name: Install dependencies

.github/workflows/release.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
name: Nuxt [Release]
22
env:
3-
node_version: 20
3+
node_version: 24
4+
node_registry: https://registry.npmjs.org/
45
changelog_user: Github CI
56
changelog_email: artem@manchenkoff.me
6-
NODE_AUTH_TOKEN: ${{ secrets.npm_token }}
7-
NODE_REGISTRY: https://registry.npmjs.org/
87
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
98
concurrency:
109
group: nuxt-laravel-echo-release
@@ -43,7 +42,7 @@ jobs:
4342
uses: actions/setup-node@v4
4443
with:
4544
node-version: ${{ env.node_version }}
46-
registry-url: ${{ env.NODE_REGISTRY }}
45+
registry-url: ${{ env.node_registry }}
4746
- name: Enable corepack
4847
run: corepack enable
4948
- name: Install dependencies

0 commit comments

Comments
 (0)