We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd2e6ff commit ebf2f85Copy full SHA for ebf2f85
.github/workflows/sdk_publish_outpost_go.yaml
@@ -46,7 +46,7 @@ jobs:
46
fi
47
# Read the version using yq; ensure it's not empty or literal "null"
48
SDK_VERSION_RAW=$(yq -r '.go.version' "$GEN_YAML_PATH")
49
- if [ -z "$SDK_VERSION_RAW" ] || [ "$SDK_VERSION_RAW" == "null" ]; then
+ if [ -z "$SDK_VERSION_RAW" ] || [ "$SDK_VERSION_RAW" = "null" ]; then
50
echo "Error: Could not read .go.version from $GEN_YAML_PATH, or version is null/empty."
51
echo "Content of $GEN_YAML_PATH:"
52
cat "$GEN_YAML_PATH"
0 commit comments