quatuorbellefeuille.com

Content, build scripts and admin scripts for the Bellefeuille Quartet website.
git clone https://git.kevinlegouguec.net/quatuorbellefeuille.com
Log | Files | Refs

.gitlab-ci.yml (319B)


      1 image: alpine:latest
      2 
      3 stages:
      4   - build
      5   - publish
      6 
      7 make-site:
      8   stage: build
      9   script:
     10     - apk add --no-cache bash make
     11     - make site
     12   artifacts:
     13     paths:
     14       - public
     15 
     16 pages:
     17   stage: publish
     18   dependencies:
     19     - make-site
     20   only:
     21     - master
     22   script:
     23     - "true"
     24   artifacts:
     25     paths:
     26       - public