Skip to content

Commit

Permalink
fix: enable semantic-release
Browse files Browse the repository at this point in the history
  • Loading branch information
aerovulpe committed Nov 28, 2023
1 parent b68f50a commit b09dc45
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 21 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ jobs:
- name: Install dependencies
run: npm install

- name: Build distribution
run: npm run build

- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
21 changes: 21 additions & 0 deletions .releaserc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
plugins:
- "@semantic-release/commit-analyzer"
- "@semantic-release/release-notes-generator"
- - "@semantic-release/changelog"
- changelogFile: "CHANGELOG.md"
- - "@semantic-release/npm"
- npmPublish: true
- - "@semantic-release/github"
- assets:
- "dist/**"
- "LICENSE"
draft: true
- - "@semantic-release/git"
- assets:
- "CHANGELOG.md"
message: "chore(release): prepare ${nextRelease.version} [skip ci]"

branches:
- name: "main"

tagFormat: ${version}
21 changes: 0 additions & 21 deletions release.config.js

This file was deleted.

0 comments on commit b09dc45

Please sign in to comment.