We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82efe5c commit c57934bCopy full SHA for c57934b
.github/workflows/build-ui.yml
@@ -17,12 +17,21 @@ jobs:
17
steps:
18
- name: Checkout repository
19
uses: actions/checkout@v4
20
+# build en website
21
- name: Install Gulp locally to build the UI
22
run: npm i gulp-cli ./en
23
- name: Build UI
24
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
31
- name: 'Upload Artifact'
32
uses: actions/upload-artifact@v4
33
with:
34
name: en-ui
- path: en/build/ui-bundle.zip
35
+ path: |
36
+ en/build/ui-bundle.zip
37
+ fr/build/ui-bundle.zip
0 commit comments