mirror of
https://github.com/troglobit/inadyn.git
synced 2025-12-20 02:18:27 +08:00
Some checks failed
Bob the Builder / clang build opts --disable-ssl (push) Has been cancelled
Bob the Builder / clang build opts --enable-openssl (push) Has been cancelled
Bob the Builder / gcc build opts --disable-ssl (push) Has been cancelled
Bob the Builder / gcc build opts --enable-openssl (push) Has been cancelled
Container Claus / build (linux/amd64) (push) Has been cancelled
Container Claus / build (linux/arm/v6) (push) Has been cancelled
Container Claus / build (linux/arm/v7) (push) Has been cancelled
Container Claus / build (linux/arm64) (push) Has been cancelled
Container Claus / build (linux/ppc64le) (push) Has been cancelled
Container Claus / merge (push) Has been cancelled
Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
121 lines
3.8 KiB
YAML
121 lines
3.8 KiB
YAML
name: Container Claus
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
tags:
|
|
- 'v*'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
packages: write
|
|
contents: read
|
|
env:
|
|
MAKEFLAGS: -j3
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
platform:
|
|
- linux/amd64
|
|
- linux/arm/v6
|
|
- linux/arm/v7
|
|
- linux/arm64
|
|
- linux/ppc64le
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: docker/metadata-action@v5
|
|
id: meta
|
|
with:
|
|
images: |
|
|
${{ github.repository }}
|
|
labels: |
|
|
org.opencontainers.image.source=https://github.com/troglobit/inadyn/tree/${{ github.sha }}/
|
|
- uses: docker/setup-qemu-action@v3
|
|
- uses: docker/setup-buildx-action@v3
|
|
- name: Log in to Docker Hub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
- uses: docker/build-push-action@v6
|
|
id: build
|
|
with:
|
|
context: .
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
platforms: ${{ matrix.platform }}
|
|
outputs: >-
|
|
type=image,
|
|
name=${{ github.repository }},
|
|
name-canonical=true,
|
|
push-by-digest=true,
|
|
push=true,
|
|
annotation-index.org.opencontainers.image.title=In-a-Dyn,
|
|
annotation-index.org.opencontainers.image.description=A dynamic DNS (DDNS) client with multiple SSL/TLS library support,
|
|
annotation-index.org.opencontainers.image.url=https://github.com/troglobit/inadyn,
|
|
annotation-index.org.opencontainers.image.licenses=GPL-2.0,
|
|
annotation-index.org.opencontainers.image.revision=${{ github.sha }}
|
|
- name: Export digest
|
|
id: digest
|
|
run: |
|
|
platform=${{ matrix.platform }}
|
|
plat="${platform#linux/}"
|
|
arch="$(echo $plat | sed 's,/,,')"
|
|
echo "name=digest-$arch" >> $GITHUB_OUTPUT
|
|
mkdir -p /tmp/digests
|
|
digest="${{ steps.build.outputs.digest }}"
|
|
fn="/tmp/digests/${digest#sha256:}"
|
|
echo "Saving $arch digest: $fn"
|
|
touch $fn
|
|
- name: Upload digest
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: ${{ steps.digest.outputs.name }}
|
|
path: /tmp/digests/*
|
|
if-no-files-found: error
|
|
retention-days: 1
|
|
|
|
merge:
|
|
runs-on: ubuntu-latest
|
|
needs: build
|
|
steps:
|
|
- name: Download digests
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
pattern: digest-*
|
|
path: /tmp/digests
|
|
merge-multiple: true
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
- name: Docker meta
|
|
id: meta
|
|
uses: docker/metadata-action@v5
|
|
with:
|
|
images: |
|
|
${{ github.repository }}
|
|
ghcr.io/${{ github.repository }}
|
|
tags: |
|
|
type=ref,event=tag
|
|
type=edge
|
|
- name: Log in to GHCR
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.repository_owner }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
- name: Create manifest list and push
|
|
working-directory: /tmp/digests
|
|
run: |
|
|
docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
|
|
$(printf '${{ github.repository }}@sha256:%s ' *)
|
|
- name: Inspect image
|
|
run: |
|
|
docker buildx imagetools inspect ${{ github.repository }}:${{ steps.meta.outputs.version }}
|