Skip to content

1.21.11

1.21.11 #8

Workflow file for this run

# Build and deploy Docker images on release
name: Build image
on:
release:
types:
- created
jobs:
build:
name: Build image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Parse Go version
run: |
echo "Go Version ${GITHUB_REF#refs/*/v}"
echo "GO_VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_HUB_USER }}
password: ${{ secrets.DOCKER_HUB_PASS }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract version metadata
id: meta
uses: docker/metadata-action@v4
with:
images: |
x1unix/go-mingw
ghcr.io/x1unix/docker-go-mingw/go-mingw
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}.{{minor}}.{{patch}}
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
- name: Build and push image
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
GO_VERSION=${{ env.GO_VERSION }}
push: true
- name: Print image digest
run: echo ${{ steps.docker_build.outputs.digest }}