Skip to content

Docker

Docker #94

name: Docker
on:
push:
# Publish `master` as Docker `latest` image.
branches:
- master
schedule:
- cron: '0 8 1 * *'
workflow_dispatch: {}
jobs:
# Push image to GitHub Packages.
# See also https://docs.docker.com/docker-hub/builds/
push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Docker Login
uses: docker/login-action@v2.1.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v4.0.0
with:
file: Dockerfile
context: .
push: true
tags: ghcr.io/djoamersfoort/corvee/corvee:latest