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 e766357 commit f4e3a60Copy full SHA for f4e3a60
.github/actions/build-evm/action.yaml
@@ -20,10 +20,10 @@ runs:
20
steps:
21
- name: Get the selected EVM version from the evm-config.yaml
22
id: evm-config-reader
23
- uses: christian-ci/action-yaml-github-output@v2
24
- with:
25
- file_path: ./evm-config.yaml
26
- main_key: ${{ inputs.type }}
+ shell: bash
+ run: |
+ awk "/^${{ inputs.type }}:/{flag=1; next} /^[[:alnum:]]/{flag=0} flag" ./evm-config.yaml \
+ | sed 's/ //g' | sed 's/:/=/g' >> "$GITHUB_OUTPUT"
27
- name: Print Variables for the selected EVM type
28
shell: bash
29
run: |
0 commit comments