From 7cc08e8e3502cc59613330d490f030dc5113fa35 Mon Sep 17 00:00:00 2001 From: Christian Byrne Date: Sat, 11 Oct 2025 15:21:34 -0700 Subject: [PATCH] [ci] fix update locales workflow (#6017) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Similar to https://github.com/Comfy-Org/ComfyUI_frontend/pull/6005, fixing the update-locales workflow by setting up the frontend before launching ComfyUI server. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-6017-ci-fix-update-locales-workflow-2896d73d36508173aaf9e0eefe4f7660) by [Unito](https://www.unito.io) --- .github/workflows/update-locales.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/update-locales.yaml b/.github/workflows/update-locales.yaml index a612130a7..9ffa702ca 100644 --- a/.github/workflows/update-locales.yaml +++ b/.github/workflows/update-locales.yaml @@ -18,14 +18,14 @@ jobs: uses: actions/checkout@v5 # Setup playwright environment - - name: Setup ComfyUI Server - uses: ./.github/actions/setup-comfyui-server - with: - launch_server: true - name: Setup ComfyUI Frontend uses: ./.github/actions/setup-frontend with: include_build_step: true + - name: Setup ComfyUI Server + uses: ./.github/actions/setup-comfyui-server + with: + launch_server: true - name: Setup Playwright uses: ./.github/actions/setup-playwright