Skip to content

docker

docker #52

Workflow file for this run

name: docker
on:
push:
workflow_dispatch:
schedule:
- cron: '42 3 * * 5'
jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/build-push-action@v6
with:
pull: true
tags: ghcr.io/fablabrothenburg/selfie-maker:latest
push: true