mirror of
https://github.com/actions/setup-go
synced 2026-09-26 15:41:47 +02:00
Preserve native Go environment names in action outputs (#793)
* preserve native Go environment names in action outputs * implement review comment * Add missing trailing newline to action.yml --------- Co-authored-by: mahabaleshwars <147705296+mahabaleshwars@users.noreply.github.com>
This commit is contained in:
co-authored by
mahabaleshwars
parent
e626ada899
commit
3bfff43db6
Vendored
+10
-8
@@ -95641,16 +95641,18 @@ var State;
|
||||
var Outputs;
|
||||
(function (Outputs) {
|
||||
Outputs["CacheHit"] = "cache-hit";
|
||||
Outputs["GoPath"] = "go-path";
|
||||
Outputs["GoBin"] = "go-bin";
|
||||
Outputs["GoBinPath"] = "go-bin-path";
|
||||
Outputs["GoRoot"] = "go-root";
|
||||
Outputs["GoCache"] = "go-cache";
|
||||
Outputs["GoModCache"] = "go-mod-cache";
|
||||
Outputs["GoOs"] = "go-os";
|
||||
Outputs["GoArch"] = "go-arch";
|
||||
Outputs["GoToolDir"] = "go-tool-dir";
|
||||
})(Outputs || (Outputs = {}));
|
||||
const GO_ENV_OUTPUTS = (/* unused pure expression or super */ null && ([
|
||||
'GOPATH',
|
||||
'GOBIN',
|
||||
'GOROOT',
|
||||
'GOCACHE',
|
||||
'GOMODCACHE',
|
||||
'GOOS',
|
||||
'GOARCH',
|
||||
'GOTOOLDIR'
|
||||
]));
|
||||
|
||||
;// CONCATENATED MODULE: ./src/package-managers.ts
|
||||
const supportedPackageManagers = {
|
||||
|
||||
Reference in New Issue
Block a user