From 331c223e730f073965186e6c970b78b86d85c30b Mon Sep 17 00:00:00 2001 From: Paul Rastoin <45004772+prastoin@users.noreply.github.com> Date: Thu, 2 Apr 2026 18:05:02 +0200 Subject: [PATCH] Fix create e2e app ci set version flakiness (#19278) Calling npm version in // with interdependent packages fait des chocapics image --- .github/workflows/ci-create-app-e2e.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-create-app-e2e.yaml b/.github/workflows/ci-create-app-e2e.yaml index cf779ce3f98..6a74cdbb680 100644 --- a/.github/workflows/ci-create-app-e2e.yaml +++ b/.github/workflows/ci-create-app-e2e.yaml @@ -66,7 +66,9 @@ jobs: run: | CI_VERSION="0.0.0-ci.$(date +%s)" echo "CI_VERSION=$CI_VERSION" >> $GITHUB_ENV - npx nx run-many -t set-local-version -p $PUBLISHABLE_PACKAGES --releaseVersion=$CI_VERSION + for pkg in $PUBLISHABLE_PACKAGES; do + npx nx run $pkg:set-local-version --releaseVersion=$CI_VERSION + done - name: Build packages run: |