garagehq.deuxfleurs.fr/.drone.yml

49 lines
1.1 KiB
YAML
Raw Normal View History

2022-01-27 14:38:40 +00:00
---
# see https://docs.drone.io/pipeline/configuration/
kind: pipeline
type: docker
name: build
steps:
2022-02-02 09:07:26 +00:00
- name: submodules
image: alpine/git
commands:
- git submodule update --init --recursive
2022-01-27 14:38:40 +00: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 14:47:44 +00:00
entrypoint: [ "/bin/zola" ]
2022-01-27 14:49:19 +00:00
command: [ "build", "-u", "https://garagehq-new.garage-staging-web.home.adnab.me" ]
2022-01-27 14:38:40 +00:00
- name: upload
image: plugins/s3
settings:
bucket: garagehq-new
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
endpoint: https://garage-staging.home.adnab.me
region: garage-staging
when:
branch:
2022-01-27 14:39:35 +00:00
- master
2022-01-27 14:38:40 +00:00
event:
exclude:
- pull_request
2022-01-27 14:41:22 +00:00
---
kind: signature
2022-02-02 09:07:26 +00:00
hmac: cb40337a18f18f71a9a382900a2f38496aa0b7b35f35acd69ca119df9e0f90de
2022-01-27 14:41:22 +00:00
...