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 ca7bc62Copy full SHA for ca7bc62
.github/workflows/sdk_publish_outpost_go.yaml
@@ -33,12 +33,14 @@ jobs:
33
token: ${{ secrets.GITHUB_TOKEN }}
34
fetch-depth: 0 # Ensure all tags are fetched
35
36
+ - name: Install yq
37
+ run: |
38
+ sudo apt-get update && sudo apt-get install -y yq
39
+ shell: bash
40
+
41
- name: Get Go SDK Version from gen.yaml
42
id: get_version
43
run: |
- # This step assumes 'yq' is available on the runner.
- # If not, you might need to add a setup step for yq, e.g.:
- # sudo apt-get update && sudo apt-get install -y yq
44
GEN_YAML_PATH="sdks/outpost-go/.speakeasy/gen.yaml"
45
if [ ! -f "$GEN_YAML_PATH" ]; then
46
echo "Error: $GEN_YAML_PATH not found."
0 commit comments