1
0
mirror of https://github.com/joaquinjsb/gitea-release-please-action synced 2026-05-13 00:41:39 +02:00

fix: falsy path should be passed as undefined (#54)

This commit is contained in:
Benjamin E. Coe
2020-08-02 15:45:04 -07:00
committed by GitHub
parent 037d85c7c6
commit 21233d3c9f
4 changed files with 27 additions and 27 deletions

4
dist/index.js vendored
View File

@@ -1742,8 +1742,8 @@ async function main () {
label: RELEASE_LABEL,
repoUrl: process.env.GITHUB_REPOSITORY,
packageName,
path,
token,
path: path ? path : undefined,
token
})
const releaseCreated = await gr.createRelease()
if (releaseCreated) {