Skip to content

Commit f417b28

Browse files
committed
which gl-* debugging
1 parent 3cc6051 commit f417b28

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/actions/features_parse/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,5 @@ runs:
1818
- id: result
1919
shell: bash
2020
run: |
21-
echo "result=$(poetry run gl-features-parse ${{ inputs.flags }})" | tee -a $GITHUB_OUTPUT
21+
which gl-features-parse
22+
echo "result=$(gl-features-parse ${{ inputs.flags }})" | tee -a $GITHUB_OUTPUT

.github/actions/flavors_parse/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ runs:
2929
MATRIX='${{ inputs.flavors_matrix }}'
3030
3131
if [[ $(echo "${MATRIX}" | jq -r 'type') != 'object' ]]; then
32-
FLAVORS=$(poetry run gl-flavors-parse ${{ inputs.flags }})
32+
which gl-flavors-parse
33+
FLAVORS=$(gl-flavors-parse ${{ inputs.flags }})
3334
MATRIX=$(jq -nc \
3435
--argjson flavors "$(echo $FLAVORS)" \
3536
'{

0 commit comments

Comments
 (0)