2024-02-24 13:15:57 +00:00
|
|
|
name: build-image
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2024-04-20 20:04:56 +00:00
|
|
|
paths-ignore:
|
|
|
|
- 'README.md'
|
2024-02-24 13:15:57 +00:00
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- dev
|
|
|
|
tags:
|
2024-09-25 18:27:12 +00:00
|
|
|
- '[0-9]+\.[0-9]+\.[0-9]+'
|
2024-02-24 13:15:57 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
docker:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: Convert repository name ot image name
|
|
|
|
id: image_name
|
|
|
|
run: |
|
|
|
|
sed -E -e 's/docker-//' -e 's/^/image_name=/' <<<"${{ github.repository }}" >> "$GITHUB_OUTPUT"
|
|
|
|
|
|
|
|
- name: Generate Docker tag names
|
|
|
|
id: meta
|
|
|
|
uses: docker/metadata-action@v5
|
|
|
|
with:
|
|
|
|
# list of Docker images to use as base name for tags
|
|
|
|
images: |
|
|
|
|
ghcr.io/${{ steps.image_name.outputs.image_name }}
|
|
|
|
${{ steps.image_name.outputs.image_name }}
|
|
|
|
# generate Docker tags based on the following events/attributes
|
|
|
|
tags: |
|
2024-09-25 18:27:12 +00:00
|
|
|
# set edge tag for default branch
|
|
|
|
type=edge,enable={{is_default_branch}}
|
|
|
|
# set dev tag for dev branch
|
2024-09-25 18:40:32 +00:00
|
|
|
type=raw,value=dev,enable=${{ github.ref == format('refs/heads/{0}', 'dev') }},branch=dev
|
2024-02-24 13:15:57 +00:00
|
|
|
# Tags for non SemVer tag names
|
|
|
|
type=match,pattern=([0-9]+.*),group=1
|
2024-09-25 18:27:12 +00:00
|
|
|
# latest tag for any tags
|
2024-09-25 18:40:32 +00:00
|
|
|
type=raw,value=latest,enable=${{ startsWith(github.ref, 'refs/tags/') }},event=tag
|
2024-02-24 13:15:57 +00:00
|
|
|
|
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
|
|
|
|
- name: Login to GHCR
|
|
|
|
uses: docker/login-action@v3
|
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.repository_owner }}
|
|
|
|
password: ${{ secrets.REGISTRY_TOKEN }}
|
|
|
|
|
|
|
|
- name: Login to Docker Hub
|
|
|
|
uses: docker/login-action@v3
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: Build and push
|
|
|
|
uses: docker/build-push-action@v5
|
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
platforms: linux/arm/v7,linux/arm64/v8,linux/amd64
|
|
|
|
push: true
|
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|