Skip to content

Commit a22e635

Browse files
committed
fix: use semantic-release directly
1 parent bf93b61 commit a22e635

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/release.yaml

+8-1
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,15 @@ jobs:
1717
with:
1818
persist-credentials: false
1919
token: ${{ secrets.RELEASE_PUSH_ACCESS }}
20+
- name: Setup Node
21+
uses: actions/setup-node@v3
22+
with:
23+
node-version: 20
24+
cache: 'npm'
25+
- name: Install Dependencies
26+
run: npm run install:ci
2027
- name: Semantic Release
21-
uses: cycjimmy/semantic-release-action@v4
28+
run: npm run semantic-release
2229
env:
2330
GITHUB_TOKEN: ${{ secrets.RELEASE_PUSH_ACCESS }}
2431
NPM_TOKEN: ${{ secrets.DUMMY_NPM_TOKEN }}

0 commit comments

Comments
 (0)