pidgin/history

3b12bacdb5a7
Add a simple graph attempting to show number of releases per month

This needs more work, but we've spent a huge amount of time on it and have
other things to work on yet.
---
environment:
- REGISTRY_HOST=docker.io
- REGISTRY_USERNAME
- REGISTRY_PASSWORD
- REPOSITORY=pidgin/history
- 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]