From e48798ebffe894bec7a181bf37c5ae2d869399a0 Mon Sep 17 00:00:00 2001 From: Johan LEROY Date: Fri, 17 Jul 2026 21:55:53 +0200 Subject: [PATCH] =?UTF-8?q?fix(ci):=20release.yml=20invalide,=20':=20'=20d?= =?UTF-8?q?ans=20un=20nom=20d'=C3=A9tape=20cassait=20le=20YAML?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Séquelle du nettoyage des tirets : un tiret cadratin dans le nom de l'étape « Publish » avait été remplacé par ' : ', or un scalaire YAML non quoté ne peut pas contenir deux-points+espace ("mapping values are not allowed"). Remplacé par une virgule. Gitea refusait de lancer le workflow → la publication npm du daemon sur un tag v* ne partait pas. --- .gitea/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index b69ccc1..ccc829c 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -44,7 +44,7 @@ jobs: # `bash -eo pipefail` : on isole l'échec attendu dans la condition d'un `if` pour ne pas # déclencher `set -e`. Le secret du registre est mappé sur NODE_AUTH_TOKEN lu par le .npmrc # de setup-node. - - name: Publish (idempotent : tolère un 409 « already exists ») + - name: Publish (idempotent, tolère un 409 « already exists ») run: | if out="$(npm publish -w @johanleroy/git-arboretum 2>&1)"; then printf '%s\n' "$out"