mirror of
https://gitlab.com/parroquia-san-leandro/cancionero-25.git
synced 2025-04-04 12:30:11 +02:00
Update .gitlab-ci.yml
This commit is contained in:
parent
29a3dbad06
commit
c75751b38e
1 changed files with 20 additions and 19 deletions
|
@ -1,19 +1,20 @@
|
|||
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
|
||||
# The Docker image that will be used to build your app
|
||||
image: python:latest
|
||||
create-pages:
|
||||
pages:
|
||||
# The folder that contains the files to be exposed at the Page URL
|
||||
publish: www
|
||||
rules:
|
||||
# This ensures that only pushes to the default branch will trigger
|
||||
# a pages deploy
|
||||
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
|
||||
# Functions that should be executed before the build script is run
|
||||
before_script:
|
||||
- pip install django && apt update && apt install 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
|
||||
- make -C ../cancionero-web
|
||||
script:
|
||||
- make -C ../cancionero-web
|
||||
- mv ../cancionero-web/public www
|
||||
|
|
Loading…
Add table
Reference in a new issue