Skip to content

Commit ba0e47f

Browse files
authored
Merge pull request #17 from Thundernerd/fix/release_workflow
2 parents 24d1f2c + 48d3b1e commit ba0e47f

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/release.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,18 @@ jobs:
1717
with:
1818
node-version: 'lts/*'
1919
- name: Install dependencies
20-
run: npm ci
20+
run: |
21+
npm install
22+
semantic-release
23+
@semantic-release/changelog
24+
@semantic-release/commit-analyzer
25+
@semantic-release/git
26+
@semantic-release/github
27+
@semantic-release/npm
28+
@semantic-release/release-notes-generator
29+
conventional-changelog-conventionalcommits
2130
- name: Release
2231
env:
2332
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
2433
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
25-
run: npx semantic-release
34+
run: npx semantic-release

0 commit comments

Comments
 (0)