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 641d8ff commit 66f77c6Copy full SHA for 66f77c6
.github/workflows/bake.yml
@@ -33,10 +33,11 @@ jobs:
33
# Compute a matrix containing the list of all extensions that have been modified
34
- name: Compute matrix
35
id: get-matrix
36
+ env:
37
+ # JSON array containing the extensions that have been changed
38
+ EXTENSIONS_CHANGED: ${{ steps.filter.outputs.changes }}
39
run: |
- raw='${{ steps.filter.outputs.changes }}'
- echo "{\"name\": $raw}" > matrix.json
- cat matrix.json
40
+ echo "{\"name\": $EXTENSIONS_CHANGED}" > matrix.json
41
echo "matrix=$(cat matrix.json)" >> "$GITHUB_OUTPUT"
42
43
Bake:
0 commit comments