mirror of
https://github.com/twentyhq/twenty
synced 2026-04-21 13:37:22 +00:00
Fix create e2e app ci set version flakiness (#19278)
Calling npm version in // with interdependent packages fait des chocapics <img width="225" height="225" alt="image" src="https://github.com/user-attachments/assets/6d10e72a-87dc-4745-b078-7dd1b4706203" />
This commit is contained in:
parent
5022bf03ba
commit
331c223e73
1 changed files with 3 additions and 1 deletions
4
.github/workflows/ci-create-app-e2e.yaml
vendored
4
.github/workflows/ci-create-app-e2e.yaml
vendored
|
|
@ -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: |
|
||||
|
|
|
|||
Loading…
Reference in a new issue