aerogramme.deuxfleurs.fr/.drone.yml

50 lines
1.1 KiB
YAML
Raw Normal View History

2022-01-27 15:38:40 +01:00
---
# see https://docs.drone.io/pipeline/configuration/
kind: pipeline
type: docker
name: build
steps:
2022-02-02 10:07:26 +01:00
- name: submodules
image: alpine/git
commands:
- git submodule update --init --recursive
- cp -rv garage/doc/book content/documentation
2022-02-02 10:07:26 +01:00
2022-01-27 15:38:40 +01:00
- name: build-css
image: node
commands:
- npm install
- npx tailwindcss -i ./src/input.css -o ./static/style.css --minify
- name: build-zola
image: ghcr.io/getzola/zola:v0.15.3
2022-01-27 15:47:44 +01:00
entrypoint: [ "/bin/zola" ]
2022-02-05 13:03:11 +01:00
command: [ "build", "-u", "https://garagehq.deuxfleurs.fr" ]
2022-01-27 15:38:40 +01:00
- name: upload
image: plugins/s3
settings:
2022-02-05 13:03:11 +01:00
bucket: garagehq.deuxfleurs.fr
2022-01-27 15:38:40 +01:00
access_key:
from_secret: aws_access_key_id
secret_key:
from_secret: aws_secret_access_key
source: public/**/*
strip_prefix: public/
target: /
path_style: true
2022-02-05 13:03:11 +01:00
endpoint: https://garage.deuxfleurs.fr
region: garage
2022-01-27 15:38:40 +01:00
when:
branch:
2022-01-27 15:39:35 +01:00
- master
2022-01-27 15:38:40 +01:00
event:
exclude:
- pull_request
2022-01-27 15:41:22 +01:00
---
kind: signature
2022-02-05 13:03:11 +01:00
hmac: 8420ca485ee30f847d4f7f3bf8a40eedb5b4697c91ec1e7005366cdb30282c59
2022-01-27 15:41:22 +01:00
...