Skip to content

Bump golang from 1.23.1-bullseye to 1.23.2-bullseye #208

Bump golang from 1.23.1-bullseye to 1.23.2-bullseye

Bump golang from 1.23.1-bullseye to 1.23.2-bullseye #208

Workflow file for this run

name: Docker
on:
push:
branches: [ main ]
# Publish semver tags as releases.
tags: [ 'v*.*.*' ]
pull_request:
branches: [ main ]
env:
# Use docker.io for Docker Hub if empty
REGISTRY: ghcr.io
# github.repository as <account>/<repo>
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
name: Build
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set build type
run: |
if [ "$GITHUB_EVENT_NAME" = "pull_request" ]; then
echo "BUILD_TYPE=test" >> $GITHUB_ENV
else
echo "BUILD_TYPE=release" >> $GITHUB_ENV
fi
# Login against a Docker registry except on PR
# https://github.com/docker/login-action
- name: Log into registry ${{ env.REGISTRY }}
if: env.BUILD_TYPE == 'release'
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
# Extract metadata (tags, labels) for Docker
# https://github.com/docker/metadata-action
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
# Setup Qemu
- name: Setup Qemu
uses: docker/setup-qemu-action@v3
# Setup Buildx
- name: Setup Docker buildx
id: buildx
uses: docker/setup-buildx-action@v3
# Build and push Docker image with Buildx (don't push on PR)
# https://github.com/docker/build-push-action
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
push: ${{ env.BUILD_TYPE == 'release' }}
target: ${{ env.BUILD_TYPE }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64,linux/arm64,linux/arm/v7
cache-from: type=gha
cache-to: type=gha,mode=max