Skip to content

Commit 0eef501

Browse files
committed
Revert "fix(ci/cd): Fix NPM release push to registry"
This reverts commit 1a54e2d.
1 parent fa2c3c3 commit 0eef501

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,33 +7,31 @@ on:
77
branches:
88
- master
99

10-
permissions:
11-
id-token: write # to enable use of OIDC for trusted publishing and npm provenance
12-
1310
jobs:
1411
release:
1512
name: Release
1613
runs-on: ubuntu-latest
1714
steps:
18-
- uses: actions/checkout@v6
19-
- uses: actions/setup-node@v6
15+
- uses: actions/checkout@v3
16+
- uses: actions/setup-node@v3
2017
with:
21-
node-version: 24
18+
node-version: 14
2219
- name: Install
2320
run: npm ci
2421
- name: Build
2522
run: npm run build
2623
- name: Test
2724
run: npm run test:nowatch
2825
- name: Semantic Release
29-
uses: cycjimmy/semantic-release-action@v6
26+
uses: cycjimmy/semantic-release-action@v3
3027
with:
3128
semantic_version: 19.0.5
3229
extra_plugins: |
3330
@semantic-release/changelog@6.0.0
3431
@semantic-release/git
3532
env:
3633
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
34+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
3735

3836
storybook-deploy:
3937
name: Storybook deploy

0 commit comments

Comments
 (0)