Skip to content

Commit

Permalink
try multi-arch build, update CI workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
dropwhile committed Apr 22, 2024
1 parent 83d95c3 commit bc843c3
Show file tree
Hide file tree
Showing 4 changed files with 96 additions and 123 deletions.
78 changes: 78 additions & 0 deletions .github/workflows/publish-docker-images.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
name: publish-docker-images
on:
workflow_dispatch:
push:
tags:
- "v*"

jobs:
build:
name: docker-publish
runs-on: ubuntu-latest

steps:
- name: Src Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true

- name: write tags env vars
run: |
TAG=$(git describe --tags)
LATEST_TAG=$(git tag -l | grep -viE '(alpha|beta)' | sort -V | tail -n 1)
GITHASH="$(git rev-parse HEAD)"
echo "TAG=$TAG"
echo "TAG=${TAG}" >> "$GITHUB_ENV"
echo "LATEST_TAG=${LATEST_TAG}"
echo "LATEST_TAG=${LATEST_TAG}" >> "$GITHUB_ENV"
echo "GITHASH=${GITHASH}"
echo "GITHASH=${GITHASH}" >> "$GITHUB_ENV"
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
cactus4docker/go-camo
ghcr.io/cactus/go-camo
tags: |
# set latest tag for master branch
type=raw,value=${{ env.TAG }}
type=raw,value=latest,enable=${{ env.TAG == env.LATEST_TAG }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to Docker Hub
uses: docker/login-action@v3
with:
password: ${{ secrets.DOCKER_PASSWORD }}
username: ${{ secrets.DOCKER_USERNAME }}

- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
provenance: false
sbom: false
file: ./examples/Dockerfile-build
platforms: linux/amd64,linux/arm64
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache
build-args: |
GITHASH=${{env.GITHASH}}
APP_VER=${{env.TAG}}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
60 changes: 0 additions & 60 deletions .github/workflows/publish-docker.yml

This file was deleted.

63 changes: 0 additions & 63 deletions .github/workflows/publish-github.yml

This file was deleted.

18 changes: 18 additions & 0 deletions examples/Dockerfile-build
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
FROM golang:alpine as builder
RUN apk add --no-cache ca-certificates tzdata make git
WORKDIR /workdir
ENV GOEXPERIMENT=loopvar
COPY go.mod go.sum ./
RUN go mod download
COPY . ./
ARG APP_VER
RUN make build APP_VER="${APP_VER}" GITHASH="${GITHASH}"; rm -rf /root/.cache/

FROM alpine:latest as run
RUN apk add --no-cache ca-certificates tzdata
WORKDIR /app
COPY --from=builder --link /workdir/build/bin/* /bin/

USER nobody
EXPOSE 8080/tcp
ENTRYPOINT ["/bin/go-camo"]

0 comments on commit bc843c3

Please sign in to comment.