We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cc6051 commit f417b28Copy full SHA for f417b28
.github/actions/features_parse/action.yml
@@ -18,4 +18,5 @@ runs:
18
- id: result
19
shell: bash
20
run: |
21
- echo "result=$(poetry run gl-features-parse ${{ inputs.flags }})" | tee -a $GITHUB_OUTPUT
+ which gl-features-parse
22
+ echo "result=$(gl-features-parse ${{ inputs.flags }})" | tee -a $GITHUB_OUTPUT
.github/actions/flavors_parse/action.yml
@@ -29,7 +29,8 @@ runs:
29
MATRIX='${{ inputs.flavors_matrix }}'
30
31
if [[ $(echo "${MATRIX}" | jq -r 'type') != 'object' ]]; then
32
- FLAVORS=$(poetry run gl-flavors-parse ${{ inputs.flags }})
+ which gl-flavors-parse
33
+ FLAVORS=$(gl-flavors-parse ${{ inputs.flags }})
34
MATRIX=$(jq -nc \
35
--argjson flavors "$(echo $FLAVORS)" \
36
'{
0 commit comments