From 3e115498fff3ff82ccbd116e9e7b12e24354aece Mon Sep 17 00:00:00 2001 From: marvinpinto Date: Sat, 19 Oct 2019 17:55:25 +0000 Subject: [PATCH] Update release files for tag: latest --- action.yml | 3 +++ dist/index.js | 1 + 2 files changed, 4 insertions(+) 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);