samsapti.dev/.drone.yml

32 lines
682 B
YAML
Raw Normal View History

2022-05-23 22:21:41 +00:00
kind: pipeline
type: docker
2024-02-10 16:59:05 +00:00
name: Build and Deplo
2022-05-23 22:21:41 +00:00
steps:
2024-02-10 16:59:05 +00:00
- name: Build site with Hugo
2023-01-16 15:23:18 +00:00
image: klakegg/hugo:ext-alpine-ci
2022-07-05 12:51:22 +00:00
environment:
HUGO_SECURITY_HTTP_URLS: none
2022-05-23 22:21:41 +00:00
commands:
2022-11-20 18:40:15 +00:00
- apk add --no-cache git py3-pygments
2022-06-14 12:33:51 +00:00
- git submodule update --init --single-branch --depth=1
2022-07-05 12:51:22 +00:00
- hugo
2022-05-23 22:21:41 +00:00
2024-02-10 16:59:05 +00:00
- name: Build and push Docker image
image: plugins/docker
settings:
repo: samsapti/website
username:
from_secret: DOCKER_USERNAME
password:
from_secret: DOCKER_PASSWORD
tags:
- "${DRONE_BUILD_NUMBER}"
- latest
2022-05-23 22:53:10 +00:00
when:
branch:
- main
event:
exclude:
2024-02-10 16:59:05 +00:00
- pull_request