From 086c93e8eaffd6358b027f4a68b852fa14b25d3b Mon Sep 17 00:00:00 2001 From: Simon Date: Sat, 12 Jul 2025 15:43:38 +0200 Subject: [PATCH] =?UTF-8?q?fix(cicd):=20script=20de=20d=C3=A9tection=20des?= =?UTF-8?q?=20changements?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Supprime un espace dans le script empĂȘchant l'attribution d'une valeur dans la variable PACKS. --- .gitea/workflows/deliver.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/deliver.yml b/.gitea/workflows/deliver.yml index 89d2771..7970dfe 100644 --- a/.gitea/workflows/deliver.yml +++ b/.gitea/workflows/deliver.yml @@ -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: