74 lines
1.9 KiB
YAML
74 lines
1.9 KiB
YAML
---
|
|
# ----------------------------------------------
|
|
# -- Build the site and push it to the registry
|
|
# ----------------------------------------------
|
|
kind: pipeline
|
|
type: kubernetes
|
|
name: Build badhouseplants.net
|
|
|
|
trigger:
|
|
event:
|
|
- push
|
|
|
|
steps:
|
|
- name: Publish the Helm chart
|
|
image: alpine/helm
|
|
environment:
|
|
GITEA_TOKEN:
|
|
from_secret: GITEA_TOKEN
|
|
commands:
|
|
- helm plugin install https://github.com/chartmuseum/helm-push
|
|
- helm package chart -d chart-package
|
|
- helm repo add --username allanger --password $GITEA_TOKEN allanger-charts https://git.badhouseplants.net/api/packages/allanger/helm
|
|
- helm cm-push "./chart-package/$(ls chart-package)" allanger-charts
|
|
|
|
- name: Init git submodules with themes
|
|
image: alpine/git
|
|
commands:
|
|
- git submodule update --init --recursive
|
|
|
|
- name: Build and push the docker image
|
|
image: plugins/docker
|
|
settings:
|
|
registry: git.badhouseplants.net
|
|
username: allanger
|
|
password:
|
|
from_secret: GITEA_TOKEN
|
|
repo: git.badhouseplants.net/allanger/badhouseplants-net
|
|
tags: ${DRONE_COMMIT_SHA}
|
|
|
|
---
|
|
# ----------------------------------------------
|
|
# -- Upload a newer version of my CV
|
|
# ----------------------------------------------
|
|
kind: pipeline
|
|
type: kubernetes
|
|
name: CV Builder
|
|
|
|
trigger:
|
|
branch:
|
|
- main
|
|
event:
|
|
- push
|
|
|
|
steps:
|
|
- name: Build the CV
|
|
image: ghcr.io/puppeteer/puppeteer
|
|
commands:
|
|
- cp -R ./content/cv/* $HOME
|
|
- cd $HOME
|
|
- npm install md-to-pdf
|
|
- npx md-to-pdf index.md
|
|
- mkdir $DRONE_WORKSPACE/cv
|
|
- mv index.pdf $DRONE_WORKSPACE/cv/n.rodionov.pdf
|
|
|
|
- name: Upload the CV
|
|
image: rclone/rclone:latest
|
|
environment:
|
|
RCLONE_CONFIG_CONTENT:
|
|
from_secret: RCLONE_CONFIG_CONTENT_PRIVATE
|
|
RCLONE_CONFIG: /tmp/rclone.conf
|
|
commands:
|
|
- echo "$RCLONE_CONFIG_CONTENT" > $RCLONE_CONFIG
|
|
- rclone copy -P $DRONE_WORKSPACE/cv badhouseplants-minio:/public-download
|