Compare commits

..

1 Commits

Author SHA1 Message Date
Pulumi Bot
96b823cf86 [internal] Update GitHub Actions workflow files 2025-09-29 17:31:31 +00:00

View File

@@ -5,7 +5,12 @@ set -euo pipefail
# e.g. go list -m -f '{{.GoVersion}}'
module_path="github.com/pulumi/pulumi/pkg/v3"
gomod="./go.mod"
go_mod_path="."
gomod="go.mod"
if [[ "$go_mod_path" != "" && "$go_mod_path" != "." ]]; then
gomod="$go_mod_path/$gomod"
fi
if [[ ! -f "$gomod" ]]; then
echo "missing $gomod" >&2