Skip to content

Commit 3d3a943

Browse files
fix(ci): run GP translation download before nightly tag creation
Previously download-gp-bundle ran after create-nightly-tag, so fresh translations were committed to the branch after the tag was already created. The nightly Docker image builds from the tag, meaning it never included the day's translations. Fix: move download-gp-bundle to run before create-nightly-tag so the tag is created on a commit that already includes the latest translations.
1 parent c298244 commit 3d3a943

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/nightly_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
echo "Using release branch: $BRANCH"
7474
create-nightly-tag:
7575
if: github.repository == 'langflow-ai/langflow'
76-
needs: [validate-inputs, resolve-release-branch]
76+
needs: [validate-inputs, resolve-release-branch, download-gp-bundle]
7777
runs-on: ubuntu-latest
7878
defaults:
7979
run:
@@ -208,7 +208,7 @@ jobs:
208208
download-gp-bundle:
209209
if: github.repository == 'langflow-ai/langflow'
210210
name: Download translations from Globalization Pipeline
211-
needs: [validate-inputs, resolve-release-branch, create-nightly-tag]
211+
needs: [validate-inputs, resolve-release-branch]
212212
runs-on: ubuntu-latest
213213
continue-on-error: true
214214
environment: GP-test

0 commit comments

Comments
 (0)