imfreedom/knowledgebase

Import author information from MediaWiki
default tip
23 months ago, Richard Laager
55bb33cac801
Import author information from MediaWiki

Testing Done:
I ran `mkdocs serve` and looked at a couple of pages. Nothing seemed to change.

Reviewed at https://reviews.imfreedom.org/r/1453/
---
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]