imfreedom/knowledgebase

658a6c987ae3
Make sure the MSN is all caps in the navigation

Testing Done:
Ran locally with `mkdocs serve`

Reviewed at https://reviews.imfreedom.org/r/1452/
---
environment:
- REGISTRY_HOST=docker.io
- REGISTRY_USERNAME
- REGISTRY_PASSWORD
- REPOSITORY=imfreedom/knowledgebase
- TAG=latest
tasks:
import:
type: docker/import
files: .:.
build:
type: docker/build
dockerfile: Dockerfile
tags: ${REGISTRY_HOST}/${REPOSITORY}:${TAG}
files: .:.
push:
type: docker/push
images: ${REGISTRY_HOST}/${REPOSITORY}:${TAG}
login:
type: docker/login
server: ${REGISTRY_HOST}
username: ${REGISTRY_USERNAME}
password: ${REGISTRY_PASSWORD}
logout:
type: docker/logout
server: ${REGISTRY_HOST}
clean:
type: docker/remove
images: ${REGISTRY_HOST}/${REPOSITORY}:${TAG}
quiet: true
plans:
default:
stages:
- tasks: [import, build]
cicd:
stages:
- tasks: [import, build, login, push]
- tasks: [logout]
run: always
clean:
stages:
- tasks: [clean]