Set DID_AUTOBUILD_GOLANG in runAutobuild

This commit is contained in:
Michael B. Gale 2023-09-28 13:29:12 +01:00
parent 4611ff9b23
commit df098abd11
No known key found for this signature in database
GPG key ID: FF5E2765BD00628F
6 changed files with 10 additions and 11 deletions

View file

@ -8,7 +8,6 @@ import {
import { getGitHubVersion } from "./api-client";
import { determineAutobuildLanguages, runAutobuild } from "./autobuild";
import * as configUtils from "./config-utils";
import { EnvVar } from "./environment";
import { Language } from "./languages";
import { Logger, getActionsLogger } from "./logging";
import {
@ -98,9 +97,6 @@ async function run() {
for (const language of languages) {
currentLanguage = language;
await runAutobuild(language, config, logger);
if (language === Language.go) {
core.exportVariable(EnvVar.DID_AUTOBUILD_GOLANG, "true");
}
}
}
} catch (unwrappedError) {