Bump golang from 1.22.0-alpine to 1.22.1-alpine (#122) #90
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |