Skip to content

Improve Docker Build and Deployment for Multi-Arch Support (arm64) #170

Improve Docker Build and Deployment for Multi-Arch Support (arm64)

Improve Docker Build and Deployment for Multi-Arch Support (arm64) #170

Workflow file for this run

name: Go
on: [push, pull_request]
env:
GO_VERSION: "1.22"
GHCR_REGISTRY: ghcr.io
GHCR_REGISTRY_IMAGE: "ghcr.io/${{ github.repository }}"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go ${{ env.GO_VERSION }}
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
cache: true
- name: Install dependencies
run: |
go install golang.org/x/tools/cmd/goimports@latest
go install honnef.co/go/tools/cmd/staticcheck@latest
export PATH="$HOME/go/bin:$PATH"
- name: Run pre-commit
uses: pre-commit/action@v3.0.1
build:
runs-on: ubuntu-latest
env:
CGO_ENABLED: "0"
steps:
- uses: actions/checkout@v4
- name: Set up Go ${{ env.GO_VERSION }}
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
cache: true
- name: Build binaries
run: ./ci-build-all.sh
- name: Upload linux/amd64 artifact
uses: actions/upload-artifact@v4
with:
name: bbctl-linux-amd64
path: bbctl-linux-amd64
if-no-files-found: error
- name: Upload linux/arm64 artifact
uses: actions/upload-artifact@v4
with:
name: bbctl-linux-arm64
path: bbctl-linux-arm64
if-no-files-found: error
- name: Upload macos/amd64 artifact
uses: actions/upload-artifact@v4
with:
name: bbctl-macos-amd64
path: bbctl-macos-amd64
if-no-files-found: error
- name: Upload macos/arm64 artifact
uses: actions/upload-artifact@v4
with:
name: bbctl-macos-arm64
path: bbctl-macos-arm64
if-no-files-found: error
build-docker:
runs-on: ubuntu-latest
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to registry
uses: docker/login-action@v3
with:
registry: ${{ env.GHCR_REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract Docker metadata
id: metadata
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}
tags: |
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/main' }}
type=sha,format=long,prefix=
- name: Docker Build
uses: docker/build-push-action@v5
with:
cache-from: ${{ env.GHCR_REGISTRY_IMAGE }}:latest
pull: true
platforms: linux/amd64,linux/arm64
file: docker/Dockerfile
tags: ${{ steps.metadata.outputs.tags }}
labels: ${{ steps.metadata.outputs.labels }}
push: true
build-args: |
COMMIT_HASH=${{ github.sha }}