Skip to content

ci: Fix tag pipeline by fetching the complete history (#98) #40

ci: Fix tag pipeline by fetching the complete history (#98)

ci: Fix tag pipeline by fetching the complete history (#98) #40

Workflow file for this run

name: Docker
on:
pull_request:
push:
tags:
- "*"
branches:
- main
jobs:
docker:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout Repository
uses: actions/checkout@v4
with:
# Workaround for https://github.com/actions/checkout/issues/1467 as the
# project is not that large:
fetch-depth: 0
- name: Build Docker Image
run: make build
- name: Push Docker Image
if: startsWith(github.ref, 'refs/tags/') && github.event_name == 'push'
run: make push
- name: Push Latest Docker Image
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
run: make push-latest