mirror of
https://gitnet.fr/deblan/side_menu.git
synced 2025-12-17 21:02:25 +01:00
22 lines
440 B
YAML
22 lines
440 B
YAML
variables:
|
|
volumes: &volumes
|
|
- /data/${CI_REPO}:/builds
|
|
|
|
when:
|
|
event: [tag, push, pull_request, manual]
|
|
branch: [master, develop, feature/*, fix/*, bugfix/*, translations]
|
|
|
|
steps:
|
|
"Build JS":
|
|
image: node:20
|
|
commands:
|
|
- make build
|
|
|
|
"Build translations":
|
|
image: deblan/php:8.3
|
|
commands:
|
|
- php bin/generate_l10n.php
|
|
|
|
"Build cache":
|
|
image: gitnet.fr/deblan/woodpecker-cache
|
|
volumes: *volumes
|