Improved github action test

This commit is contained in:
Mike Farah 2022-10-17 15:27:24 +11:00
parent 9ca20451b7
commit 780ae29c2b
1 changed files with 5 additions and 2 deletions

View File

@ -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
cmd: yq -i '.b.c = 5' examples/sample.yaml