fix(cicd): script de détection des changements
Some checks failed
Wallset Pipeline / detect-changes (pull_request) Successful in 15s
Wallset Pipeline / Generate and Check manifest of ${{ matrix.pack }} (pull_request) Failing after 55s

Supprime un espace dans le script empêchant l'attribution d'une valeur dans la variable PACKS.
This commit is contained in:
2025-07-12 15:43:38 +02:00
parent 5abfa7ec16
commit 086c93e8ea

View File

@@ -29,7 +29,7 @@ jobs:
- name: Detect changed packs
id: set
run: |
PACKS= $(git diff --name-only ${{ github.event.pull_request.base.sha }} ${{ github.sha }} | grep '^assets/' | cut -d '/' -f2 | sort -u | jq -R -s -c 'split("\n")[:-1]')
PACKS=$(git diff --name-only ${{ github.event.pull_request.base.sha }} ${{ github.sha }} | grep '^assets/' | cut -d '/' -f2 | sort -u | jq -R -s -c 'split("\n")[:-1]')
echo "changed=$PACKS" >> $GITHUB_OUTPUT
gen-manifest: