Allow multiple uploads in a single job

They must all have a unique category. The category will be
converted into an environment variable.
This commit is contained in:
Andrew Eisenberg 2021-10-29 11:31:30 -07:00
parent f360da772a
commit 6a98a4b500
10 changed files with 101 additions and 22 deletions

1
lib/actions-util.js generated
View file

@ -98,6 +98,7 @@ const getCommitOid = async function (ref = "HEAD") {
}
catch (e) {
core.info(`Failed to call git to get current commit. Continuing with data from environment: ${e}`);
core.info(e.stack || "NO STACK");
return (0, util_1.getRequiredEnvParam)("GITHUB_SHA");
}
};