Skip to content

Commit 0bd7df1

Browse files
actions
Try to download al ui bundles
1 parent bd6a299 commit 0bd7df1

1 file changed

Lines changed: 8 additions & 9 deletions

File tree

.github/workflows/build-ui.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,18 @@ jobs:
1717
steps:
1818
- name: Checkout repository
1919
uses: actions/checkout@v4
20-
# build en website
20+
# install gulp
2121
- name: Install Gulp locally to build the UI
22-
run: npm i gulp-cli ./en
23-
- name: Build UI
24-
run: gulp bundle --out ./ui-bundles --name en-ui.zip -f ./en/gulpfile.js
22+
run: npm i gulp-cli
23+
# build en website
24+
- name: Build en UI
25+
run: gulp bundle -f /en/gulpfile.js
2526
# build fr website
26-
- name: Install Gulp locally to build the UI
27-
run: npm i gulp-cli ./fr
28-
- name: Build UI
29-
run: gulp bundle --out ./ui-bundles --name fr-ui.zip -f ./en/gulpfile.js
27+
- name: Build fr UI
28+
run: gulp bundle -f ./fr/gulpfile.js
3029
# download UIs
3130
- name: 'Upload Artifact'
3231
uses: actions/upload-artifact@v4
3332
with:
3433
name: ui-bundles
35-
path: ui-bundles
34+
path: *.zip

0 commit comments

Comments
 (0)