Files
debyl-site/.drone.yml
2020-09-28 23:38:25 -04:00

39 lines
949 B
YAML

---
kind: pipeline
name: default
platform:
os: linux
arch: arm
steps:
- name: gate
image: bdebyl/alpine-git
commands:
- git fetch origin +refs/heads/master
- git show-ref
- git diff --name-only HEAD~1..HEAD | grep 'content\|themes\|config.yaml' || exit 78
- name: build
image: bdebyl/hugo
commands:
- git clone https://gitlab.com/bdebyl/hugo-theme-even.git themes/even
- hugo
- name: deploy
image: bdebyl/awscli
environment:
DISTRIBUTION_ID:
from_secret: aws_distribution_id
AWS_ACCESS_KEY_ID:
from_secret: aws_access_key_id
AWS_SECRET_ACCESS_KEY:
from_secret: aws_secret_key
AWS_DEFAULT_REGION: us-east-1
commands:
- aws s3 sync --acl "public-read" --sse "AES256" public/ s3://bdebyl.net
- aws cloudfront create-invalidation --distribution-id "$DISTRIBUTION_ID" --paths '/*'
when:
branch:
- master