Skip to content

Commit

Permalink
Update ci-sdk-go-build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjohnsonpint committed Oct 10, 2024
1 parent d6f0d68 commit 64b3e5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-sdk-go-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
uses: actions/checkout@v4
- name: Find tools
id: get-tools-dirs
run: echo "dirs=$(find ./sdk/go/tools -name 'go.mod' -exec dirname {} \; | jq -Rsc 'split("\n")[:-1]')" >> ${GITHUB_OUTPUT}
run: echo "dirs=$(find ./sdk/go/tools -mindepth 1 -maxdepth 1 -type d | jq -Rsc 'split("\n")[:-1]')" >> ${GITHUB_OUTPUT}
- name: Find examples
id: get-examples-dirs
run: echo "dirs=$(find ./sdk/go/examples -name 'go.mod' -exec dirname {} \; | jq -Rsc 'split("\n")[:-1]')" >> ${GITHUB_OUTPUT}
run: echo "dirs=$(find ./sdk/go/examples -mindepth 1 -maxdepth 1 -type d | jq -Rsc 'split("\n")[:-1]')" >> ${GITHUB_OUTPUT}

sdk-go-build-tools:
needs: get-dirs
Expand Down

0 comments on commit 64b3e5c

Please sign in to comment.