2023-03-28 18:57:22 +02:00
|
|
|
name: Build
|
|
|
|
|
|
|
|
on:
|
2023-05-11 01:28:41 +02:00
|
|
|
workflow_dispatch:
|
2023-03-28 18:57:22 +02:00
|
|
|
push:
|
2023-04-27 23:40:28 +02:00
|
|
|
branches:
|
|
|
|
- master
|
2023-04-03 00:36:30 +02:00
|
|
|
paths-ignore:
|
2023-04-03 14:08:07 +02:00
|
|
|
- '**/*.md'
|
2023-11-29 08:26:41 +01:00
|
|
|
- '**/*.yml'
|
2023-04-16 06:29:19 +02:00
|
|
|
- '.gitignore'
|
|
|
|
- '.dockerignore'
|
2023-04-16 05:59:29 +02:00
|
|
|
- '.github/**'
|
|
|
|
- '.github/workflows/**'
|
2023-03-28 18:57:22 +02:00
|
|
|
|
2023-11-24 04:08:53 +01:00
|
|
|
concurrency:
|
|
|
|
group: build
|
|
|
|
cancel-in-progress: false
|
|
|
|
|
2023-03-28 18:57:22 +02:00
|
|
|
jobs:
|
2023-04-21 06:21:07 +02:00
|
|
|
shellcheck:
|
2023-04-30 07:09:25 +02:00
|
|
|
name: Check
|
2023-04-19 01:32:32 +02:00
|
|
|
uses: ./.github/workflows/check.yml
|
2023-03-28 18:57:22 +02:00
|
|
|
build:
|
2023-04-30 07:09:25 +02:00
|
|
|
name: Build
|
2023-04-21 07:55:32 +02:00
|
|
|
needs: shellcheck
|
2023-03-28 18:57:22 +02:00
|
|
|
runs-on: ubuntu-latest
|
2023-04-03 23:37:33 +02:00
|
|
|
permissions:
|
2023-11-29 08:26:41 +01:00
|
|
|
actions: write
|
2023-04-03 23:37:33 +02:00
|
|
|
packages: write
|
|
|
|
contents: read
|
2023-04-28 01:03:00 +02:00
|
|
|
steps:
|
2023-05-25 03:16:44 +02:00
|
|
|
-
|
|
|
|
name: Checkout
|
2023-09-04 14:04:19 +00:00
|
|
|
uses: actions/checkout@v4
|
2023-05-25 03:16:44 +02:00
|
|
|
with:
|
2023-11-29 08:51:52 +01:00
|
|
|
fetch-depth: 0
|
2023-11-29 08:26:41 +01:00
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v3
|
2023-05-25 03:16:44 +02:00
|
|
|
-
|
|
|
|
name: Login into Docker Hub
|
2023-09-12 08:10:09 +00:00
|
|
|
uses: docker/login-action@v3
|
2023-05-25 03:16:44 +02:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
-
|
|
|
|
name: Login to GitHub Container Registry
|
2023-09-12 08:10:09 +00:00
|
|
|
uses: docker/login-action@v3
|
2023-05-25 03:16:44 +02:00
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.actor }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
-
|
|
|
|
name: Build Docker image
|
2023-11-29 08:26:41 +01:00
|
|
|
id: build
|
2023-11-29 08:51:52 +01:00
|
|
|
run: |
|
|
|
|
#!/bin/bash
|
|
|
|
|
2023-11-29 08:26:41 +01:00
|
|
|
DIRECTORY="."
|
|
|
|
PLATFORMS="linux/amd64,linux/arm64"
|
|
|
|
VERSION="${{ vars.MAJOR }}.${{ vars.MINOR }}"
|
|
|
|
echo "version=${VERSION}" >> $GITHUB_OUTPUT
|
|
|
|
BUILD_DATE="$(date -u +'%Y-%m-%dT%H:%M:%SZ')"
|
|
|
|
TITLE="$(grep --only-matching --perl-regex "(?<=image.title\=).*" $DIRECTORY/Dockerfile | sed -e 's/ /\xc2\xa0/g')"
|
|
|
|
DESC="$(grep --only-matching --perl-regex "(?<=image.description\=).*" $DIRECTORY/Dockerfile | sed -e 's/ /\xc2\xa0/g')"
|
|
|
|
|
|
|
|
TAGS=()
|
|
|
|
TAGS=("${{ github.repository }}:latest")
|
|
|
|
TAGS+=("${{ github.repository }}:${VERSION}")
|
|
|
|
TAGS+=("ghcr.io/${{ github.repository }}:latest")
|
|
|
|
TAGS+=("ghcr.io/${{ github.repository }}:${VERSION}")
|
|
|
|
|
|
|
|
LABELS=()
|
|
|
|
LABELS=("org.opencontainers.image.licenses=MIT")
|
|
|
|
LABELS+=("org.opencontainers.image.title=${TITLE}")
|
|
|
|
LABELS+=("org.opencontainers.image.description=${DESC}")
|
|
|
|
LABELS+=("org.opencontainers.image.version=${VERSION}")
|
|
|
|
LABELS+=("org.opencontainers.image.created=${BUILD_DATE}")
|
|
|
|
LABELS+=("org.opencontainers.image.revision=${GITHUB_RUN_ID}")
|
2023-11-29 08:51:52 +01:00
|
|
|
LABELS+=("org.opencontainers.image.url=https://hub.docker.com/r/${{ github.repository }}")
|
2023-11-29 08:26:41 +01:00
|
|
|
LABELS+=("org.opencontainers.image.source=https://github.com/${{ github.repository }}")
|
|
|
|
|
|
|
|
docker buildx build --progress=plain \
|
|
|
|
--platform "${PLATFORMS}" \
|
2023-05-25 03:16:44 +02:00
|
|
|
--output "type=image,push=true" \
|
2023-11-29 08:26:41 +01:00
|
|
|
--build-arg "VERSION_ARG=${VERSION}" \
|
2023-05-25 03:16:44 +02:00
|
|
|
--build-arg "VCS_REF=${GITHUB_SHA::8}" \
|
2023-11-29 08:26:41 +01:00
|
|
|
$(printf '%s' "${LABELS[@]/#/ --label }" ) \
|
|
|
|
$(printf '%s' "${LABELS[@]/#/ --annotation }" ) \
|
|
|
|
$(printf '%s' "${TAGS[@]/#/ --tag }" ) "${DIRECTORY}"
|
|
|
|
|
2023-05-25 03:16:44 +02:00
|
|
|
rm -f ${HOME}/.docker/config.json
|
|
|
|
-
|
|
|
|
name: Create a release
|
|
|
|
uses: action-pack/github-release@v2
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}
|
|
|
|
with:
|
2023-11-29 08:26:41 +01:00
|
|
|
tag: "v${{ steps.build.outputs.version }}"
|
|
|
|
title: "v${{ steps.build.outputs.version }}"
|
2023-05-25 03:16:44 +02:00
|
|
|
-
|
|
|
|
name: Increment version variable
|
|
|
|
uses: action-pack/bump@v2
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.REPO_ACCESS_TOKEN }}
|
|
|
|
-
|
|
|
|
name: Push to Gitlab mirror
|
|
|
|
uses: action-pack/gitlab-sync@v3
|
|
|
|
with:
|
|
|
|
url: ${{ secrets.GITLAB_URL }}
|
|
|
|
token: ${{ secrets.GITLAB_TOKEN }}
|
|
|
|
username: ${{ secrets.GITLAB_USERNAME }}
|