Use sepLabels when joining labels for output

This commit is contained in:
Jeremy Gustie 2020-11-23 14:22:36 -05:00
parent 7cb65aaacb
commit 2bc32a15a5
No known key found for this signature in database
GPG Key ID: 02A531E263CAE527
2 changed files with 2 additions and 2 deletions

2
dist/index.js generated vendored
View File

@ -149,7 +149,7 @@ function run() {
core.info(label);
}
core.endGroup();
core.setOutput('labels', labels.join(inputs.sepTags));
core.setOutput('labels', labels.join(inputs.sepLabels));
}
catch (error) {
core.setFailed(error.message);

View File

@ -47,7 +47,7 @@ async function run() {
core.info(label);
}
core.endGroup();
core.setOutput('labels', labels.join(inputs.sepTags));
core.setOutput('labels', labels.join(inputs.sepLabels));
} catch (error) {
core.setFailed(error.message);
}