blob: 89823a804acabfdcfa02c8f8400ee3f3aa193bdd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
---
# see https://docs.drone.io/pipeline/configuration/
kind: pipeline
type: docker
name: build
steps:
- 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
entrypoint: [ "/bin/zola" ]
command: [ "build" ]
- 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:
- master
event:
exclude:
- pull_request
---
kind: signature
hmac: 6b52cc98a9ff3c8ff4327fd9ceb95fcb628c96f737e2e7596a47c3cb7d589882
...
|