Skip to content

Commit

Permalink
fix: Missing channel name in semantic-release config
Browse files Browse the repository at this point in the history
  • Loading branch information
jhnns committed Feb 4, 2025
1 parent 2f05241 commit 6f669f1
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion semantic-release/base.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
/** @type {import("semantic-release").Options} */
export const config = {
branches: ["main", { name: "beta", prerelease: true }],
branches: [
{
name: "main",
channel: "latest",
},
{ name: "beta", prerelease: true },
],
plugins: [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
Expand Down

0 comments on commit 6f669f1

Please sign in to comment.