mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
* use FROM --platform=$BUILDPLATFORM to build arm images correctly * use v4 of docker build and push
61 lines
2.1 KiB
YAML
61 lines
2.1 KiB
YAML
name: Build and Publish Docker image
|
|
|
|
# Trigger on pushes to astria branch, new semantic version tags, and pull request updates
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- "astria"
|
|
tags:
|
|
- "v[0-9]+.[0-9]+.[0-9]+"
|
|
- "v[0-9]+.[0-9]+.[0-9]+-alpha.[0-9]+"
|
|
- "v[0-9]+.[0-9]+.[0-9]+-beta.[0-9]+"
|
|
- "v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+"
|
|
# trigger on pull request updates when target is `astria` branch
|
|
pull_request:
|
|
branches:
|
|
- "astria"
|
|
|
|
jobs:
|
|
build-and-publish-latest:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# Checking out the repo
|
|
- uses: actions/checkout@v2
|
|
# Setting up Go
|
|
- uses: actions/setup-go@v4
|
|
with:
|
|
go-version: "^1.20.x" # The Go version to download (if necessary) and use.
|
|
- run: go version
|
|
|
|
# https://github.com/docker/setup-qemu-action
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v1
|
|
# https://github.com/docker/setup-buildx-action
|
|
- name: Set up Docker Buildx
|
|
id: buildx
|
|
uses: docker/setup-buildx-action@v1
|
|
- name: Log in to registry
|
|
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin
|
|
# Generate correct tabs and labels
|
|
- name: Docker metadata
|
|
id: metadata
|
|
uses: docker/metadata-action@v4
|
|
with:
|
|
images: |
|
|
ghcr.io/astriaorg/go-ethereum
|
|
tags: |
|
|
type=ref,event=pr
|
|
type=semver,pattern={{major}}.{{minor}}.{{patch}}
|
|
type=sha
|
|
# set latest tag for `astria` branch
|
|
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'astria') }}
|
|
- name: Build and push
|
|
uses: docker/build-push-action@v4
|
|
with:
|
|
context: .
|
|
# It takes over 30 minutes to build the arm image right now, so we only build it on tags which is what we use for releases.
|
|
platforms: ${{ contains(github.ref, 'refs/tags/v') && 'linux/amd64,linux/arm64' || 'linux/amd64' }}
|
|
push: true
|
|
tags: ${{ steps.metadata.outputs.tags }}
|
|
labels: ${{ steps.metadata.outputs.labels }}
|