We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88bba6c commit e36881cCopy full SHA for e36881c
release.mjs
@@ -4,6 +4,9 @@ const branch = process.env.BRANCH || process.env.CI_REF_NAME || ''
4
const branchSlug = branch.replace(/\//g, '-')
5
const branchPrefix = branch.split('/')[0]
6
7
+/**
8
+ * @type {import('release-it').Config}
9
+ */
10
const config = {
11
isPreRelease: branch !== 'master',
12
preRelease: branch !== 'master',
@@ -25,8 +28,6 @@ const config = {
25
28
},
26
29
}
27
30
-console.debug('config', config)
-
31
release(config).then((output) => {
32
console.debug('output', output)
33
0 commit comments