Skip to content

Commit

Permalink
Test semantic release
Browse files Browse the repository at this point in the history
  • Loading branch information
nfarrell-kx committed Jun 7, 2024
1 parent 7336742 commit 8769fa0
Show file tree
Hide file tree
Showing 4 changed files with 8,662 additions and 2,117 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/semantic-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: KX VS Code Semantic Release Test

on:
push:
branches:
- test-semantic-release

env:
NODE_ENV: production

jobs:
release:
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17 changes: 17 additions & 0 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
module.exports = {
branches: ["main"],
plugins: [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
// "@semantic-release/github",
[
"@semantic-release/git",
{
assets: ["package.json", "CHANGELOG.md"],
message:
"chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}",
},
],
],
};
Loading

0 comments on commit 8769fa0

Please sign in to comment.