Skip to content

build

build #35

Workflow file for this run

name: build
on:
workflow_dispatch:
push:
tags:
- 'v[0-9]+\.[0-9]+\.[0-9]+'
- 'v[0-9]+\.[0-9]+\.[0-9]+-rc[0-9]+'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
id-token: write
contents: read
packages: write
jobs:
build:
name: "Build Images"
strategy:
fail-fast: false
matrix:
os:
- linux
arch:
- amd64
- arm64
runs-on: burnt-labs-${{ matrix.arch }}
steps:
- name: Check out code
uses: actions/checkout@v4
with:
repository: goreleaser/goreleaser-cross
ref: ${{ github.ref }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up docker buildx
uses: docker/setup-buildx-action@v3
- name: Metadata for container
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}
tags: |
type=sha
type=semver,pattern={{version}},enable=${{ github.event_name == 'push' }}
type=raw,value=latest,enable={{is_default_branch}}
- name: Setup env
run: |
cat /home/runner/_work/goreleaser-cross/goreleaser-cross/.env >> ${GITHUB_ENV}
- name: Add to dockerfile
working-directory: /home/runner/_work/goreleaser-cross/goreleaser-cross
run: |
echo "FROM ghcr.io/goreleaser/goreleaser$GORELEASER_DISTRIBUTION:v$GORELEASER_VERSION$GORELEASER_DISTRIBUTION as goreleaser >> Dockerfile.base
echo "FROM ghcr.io/goreleaser/goreleaser-cross-base:$TAG_VERSION" >> Dockerfile.base
echo "COPY --from=goreleaser /usr/bin/goreleaser /usr/bin/goreleaser" >> Dockerfile.base
- name: Build and push by digest
id: build
uses: docker/build-push-action@v5
with:
file: Dockerfile.base
context: /home/runner/_work/goreleaser-cross/goreleaser-cross
cache-from: type=gha,scope=${{ github.ref_name }}/${{ matrix.os }}/${{ matrix.arch }}
cache-to: type=gha,mode=max,scope=${{ github.ref_name }}/${{ matrix.os }}/${{ matrix.arch }}
labels: ${{ steps.meta.outputs.labels }}
platforms: ${{ matrix.os }}/${{ matrix.arch }}
outputs: type=image,name=ghcr.io/${{ github.repository }},push-by-digest=true,name-canonical=true,push=true
build-args: |
TAG_VERSION=${{ env.TAG_VERSION }}
GORELEASER_VERSION=${{ env.GORELEASER_VERSION }}
DEBIAN_FRONTEND=${{ env.DEBIAN_FRONTEND }}
GO_VERSION=${{ env.GO_VERSION }}
TINI_VERSION=${{ env.TINI_VERSION }}
COSIGN_VERSION=${{ env.COSIGN_VERSION }}
COSIGN_SHA256=${{ env.COSIGN_SHA256 }}
DEBIAN_FRONTEND=${{ env.DEBIAN_FRONTEND }}
TOOLCHAINS_VERSION=${{ env.TOOLCHAINS_VERSION }}
- name: Export digest
id: digest
run: |
digest="${{ steps.build.outputs.digest }}"
echo "digest=${digest#sha256:}" >> $GITHUB_OUTPUT
- name: Create digest file
run: |
mkdir -p ${{ runner.temp }}/${{ matrix.os }}/${{ matrix.arch }}
touch ${{ runner.temp }}/${{ matrix.os }}/${{ matrix.arch }}/${{ steps.digest.outputs.digest }}
- name: Upload digest
uses: actions/upload-artifact@v4
with:
name: ${{ steps.digest.outputs.digest }}
path: ${{ runner.temp }}/${{ matrix.os }}/${{ matrix.arch }}/${{ steps.digest.outputs.digest }}
if-no-files-found: error
retention-days: 3
push:
name: "Push Images"
needs: build
runs-on: ubuntu-latest
steps:
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Download digests
uses: actions/download-artifact@v4
with:
path: ${{ runner.temp }}/digests
merge-multiple: true
- name: Metadata for container
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}
tags: |
type=sha
type=semver,pattern={{version}},enable=${{ github.event_name == 'push' }}
type=raw,value=latest,enable={{is_default_branch}}
- name: Create manifest list and push
working-directory: ${{ runner.temp }}/digests
run: |
docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
$(printf 'ghcr.io/${{ github.repository }}@sha256:%s ' *)
- name: Inspect merged image
run: |
jq -cr '.tags | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON" | \
xargs -n1 docker buildx imagetools inspect