Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .docker/web-apps.bake.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ FROM web-base AS web-apps
ENV PRODUCT_VERSION=${PRODUCT_VERSION}
ENV BUILD_ROOT=${BUILD_ROOT}

RUN cd app/translation && \
python3 merge_and_check.py

ARG TARGETARCH
RUN cd app/build && \
THEME=euro-office grunt $(if [ "$TARGETARCH" = "arm64" ]; then echo "--skip-imagemin"; fi)
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ jobs:
run: |
cd web-apps/build
npm install

- name: Merge missing translations keys
run: |
cd web-apps/translation
python3 merge_and_check.py

- name: Run grunt
run: |
Expand Down