Skip to content

Commit c57934b

Browse files
actions
Add build of fr
1 parent 82efe5c commit c57934b

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/build-ui.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,21 @@ jobs:
1717
steps:
1818
- name: Checkout repository
1919
uses: actions/checkout@v4
20+
# build en website
2021
- name: Install Gulp locally to build the UI
2122
run: npm i gulp-cli ./en
2223
- name: Build UI
2324
run: gulp bundle -f ./en/gulpfile.js
25+
# build fr website
26+
- name: Install Gulp locally to build the UI
27+
run: npm i gulp-cli ./en
28+
- name: Build UI
29+
run: gulp bundle -f ./en/gulpfile.js
30+
# download UIs
2431
- name: 'Upload Artifact'
2532
uses: actions/upload-artifact@v4
2633
with:
2734
name: en-ui
28-
path: en/build/ui-bundle.zip
35+
path: |
36+
en/build/ui-bundle.zip
37+
fr/build/ui-bundle.zip

0 commit comments

Comments
 (0)