mirror of
https://gitlab.com/parroquia-san-leandro/cancionero-25.git
synced 2025-04-12 00:10:11 +02:00
19 lines
No EOL
742 B
YAML
19 lines
No EOL
742 B
YAML
default:
|
|
image: "python:latest"
|
|
|
|
create_pages:
|
|
script:
|
|
- pip install django && apt update && apt install -y make node-less locales && sed -i '/es_ES.UTF-8/s/^# //g' /etc/locale.gen && locale-gen
|
|
- git clone https://gitlab.com/parroquia-san-leandro/cancionero-web ../cancionero-web
|
|
- ln -s ../cancionero-25 ../cancionero-web/latex
|
|
- mkdir ../cancionero-web/audios
|
|
- make -C ../cancionero-web
|
|
- mv ../cancionero-web/public www
|
|
- echo La web está disponible en https://$CI_PROJECT_NAMESPACE_SLUG.gitlab.io/$CI_PROJECT_PATH/
|
|
pages: true
|
|
artifacts:
|
|
paths:
|
|
- www
|
|
rules:
|
|
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
environment: production |