Skip to content

Commit 12b715f

Browse files
godiagonalSamuel Johansson
andauthored
fix: repair default value for create_gitlab_releases variable (#89)
Co-authored-by: Samuel Johansson <samuel.johansson@detectify.com>
1 parent d85adfe commit 12b715f

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/thick-eyes-wave.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'changesets-gitlab': patch
3+
---
4+
5+
fix: repair default value for `create_gitlab_releases` variable

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export const main = async ({
8787
const result = await runPublish({
8888
script: publishScript,
8989
gitlabToken: GITLAB_TOKEN!,
90-
createGitlabReleases: getInput('create_gitlab_releases') === 'true',
90+
createGitlabReleases: getInput('create_gitlab_releases') !== 'false',
9191
})
9292

9393
if (result.published) {

0 commit comments

Comments
 (0)