diff --git a/.github/workflows/test-yq.yml b/.github/workflows/test-yq.yml index 7c019700..b292cc3a 100644 --- a/.github/workflows/test-yq.yml +++ b/.github/workflows/test-yq.yml @@ -12,11 +12,14 @@ jobs: steps: - uses: actions/checkout@v3 - name: Get test + id: get_value uses: mikefarah/yq@master with: - cmd: yq eval '.a' examples/sample.yaml + cmd: yq '.b.e[0].name' examples/sample.yaml + - name: Who stole the cookie + run: echo "### It was [${{ steps.get_value.outputs.result }}]" >> $GITHUB_STEP_SUMMARY - name: Write inplace test id: lookupSdkVersion uses: mikefarah/yq@master with: - cmd: yq eval -i '.b.c = 5' examples/sample.yaml \ No newline at end of file + cmd: yq -i '.b.c = 5' examples/sample.yaml \ No newline at end of file