Skip to content

Commit 5bc9165

Browse files
committed
chore: update pkgs
1 parent 654271f commit 5bc9165

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/ci.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ concurrency:
1919
group: ${{ github.workflow }}-${{ github.ref }}
2020
cancel-in-progress: true
2121

22-
2322
env:
2423
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
2524
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -40,7 +39,6 @@ jobs:
4039
- uses: actions/checkout@v4
4140
with:
4241
fetch-depth: 30
43-
persist-credentials: false
4442

4543
- uses: FranzDiebold/github-env-vars-action@v2
4644

@@ -59,4 +57,5 @@ jobs:
5957
- name: Release
6058
if: github.ref == 'refs/heads/develop'
6159
run: |
62-
node release.mjs
60+
npm i -g semantic-release @semantic-release/git @semantic-release/github conventional-changelog-conventionalcommits
61+
npx semantic-release --no-ci --debug

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ jobs:
3333
- uses: actions/checkout@v4
3434
with:
3535
fetch-depth: 30
36-
persist-credentials: false
3736

3837
- uses: FranzDiebold/github-env-vars-action@v2
3938

@@ -51,4 +50,5 @@ jobs:
5150
5251
- name: Release
5352
run: |
54-
node release.mjs
53+
npm i -g semantic-release @semantic-release/git @semantic-release/github conventional-changelog-conventionalcommits
54+
npx semantic-release --no-ci --debug

0 commit comments

Comments
 (0)