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

View file

@ -85,6 +85,7 @@ export const getCommitOid = async function (ref = "HEAD"): Promise<string> {
core.info(
`Failed to call git to get current commit. Continuing with data from environment: ${e}`
);
core.info((e as Error).stack || "NO STACK");
return getRequiredEnvParam("GITHUB_SHA");
}
};