diff --git a/action.yml b/action.yml index 13a160f..34425ad 100644 --- a/action.yml +++ b/action.yml @@ -22,6 +22,9 @@ inputs: files: description: "Assets to upload to the release" required: false +outputs: + automatic_releases_tag: + decription: "The release tag this action just processed" runs: using: "node12" main: "dist/index.js" diff --git a/dist/index.js b/dist/index.js index 0bdbcd4..9740489 100644 --- a/dist/index.js +++ b/dist/index.js @@ -15879,6 +15879,7 @@ exports.main = () => __awaiter(void 0, void 0, void 0, function* () { yield exports.uploadReleaseArtifacts(client, releaseUploadUrl, args.files); core.debug(`Exporting environment variable AUTOMATIC_RELEASES_TAG with value ${releaseTag}`); core.exportVariable('AUTOMATIC_RELEASES_TAG', releaseTag); + core.setOutput('automatic_releases_tag', releaseTag); } catch (error) { core.setFailed(error.message);