website/.drone.yml

81 lines
1.8 KiB
YAML
Raw Permalink Normal View History

kind: pipeline
name: default
steps:
2023-12-22 19:19:49 +00:00
# stable site
- name: build_stable
2023-07-29 22:26:13 +00:00
image: klakegg/hugo:ext-alpine-ci
environment:
HUGO_SECURITY_HTTP_URLS: none
commands:
- hugo --destination _site/
when:
branch:
- main
2023-12-22 19:19:49 +00:00
# staging site
- name: build_staging
2023-07-29 22:26:13 +00:00
image: klakegg/hugo:ext-alpine-ci
environment:
HUGO_SECURITY_HTTP_URLS: none
commands:
- hugo --baseURL "https://staging.data.coop" --destination _site/
when:
branch:
- staging
2023-03-06 19:15:41 +00:00
2023-07-26 14:57:00 +00:00
# stable site
2023-07-26 14:58:26 +00:00
- name: docker_stable
2019-03-02 21:45:48 +00:00
image: plugins/docker
2019-03-16 19:28:36 +00:00
settings:
repo: docker.data.coop/data-coop-website
registry: docker.data.coop
username:
from_secret: DOCKER_USERNAME
password:
from_secret: DOCKER_PASSWORD
2023-03-06 19:15:41 +00:00
tags:
2019-03-16 19:28:36 +00:00
- "${DRONE_BUILD_NUMBER}"
2023-07-26 14:57:00 +00:00
- "stable"
2019-03-03 14:14:42 +00:00
when:
branch:
2023-07-25 19:49:45 +00:00
- main
2023-03-06 19:15:41 +00:00
event:
exclude:
- pull_request
2023-07-26 14:57:00 +00:00
# staging site
2023-07-26 14:58:26 +00:00
- name: docker_staging
2023-07-26 14:57:00 +00:00
image: plugins/docker
settings:
repo: docker.data.coop/data-coop-website
registry: docker.data.coop
username:
from_secret: DOCKER_USERNAME
password:
from_secret: DOCKER_PASSWORD
tags:
- "${DRONE_BUILD_NUMBER}"
- "staging"
when:
branch:
- staging
event:
exclude:
- pull_request
# - name: notify
# image: spotlightkid/drone-matrixchat-notify:latest
# settings:
# homeserver: https://data.coop
# roomid: '!plKSghHbepWeUEtbHE:data.coop'
# userid:
# from_secret: matrix_username
# password:
# from_secret: matrix_password
# markdown: 'yes'
# template: |
# `${DRONE_REPO}` build #${DRONE_BUILD_NUMBER} status: **${DRONE_BUILD_STATUS}**
#
# ${DRONE_PULL_REQUEST_TITLE}](${DRONE_COMMIT_LINK})