mirror of
https://github.com/soxoj/maigret.git
synced 2026-05-06 22:19:01 +00:00
72 lines
2.1 KiB
YAML
72 lines
2.1 KiB
YAML
name: Build docker image and push to DockerHub
|
|
|
|
on:
|
|
push:
|
|
branches: [ main, dev ]
|
|
|
|
jobs:
|
|
docker:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
-
|
|
name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
-
|
|
name: Login to DockerHub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
|
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
|
|
-
|
|
name: Extract metadata (CLI)
|
|
id: meta_cli
|
|
uses: docker/metadata-action@v5
|
|
with:
|
|
images: ${{ secrets.DOCKER_HUB_USERNAME }}/maigret
|
|
tags: |
|
|
type=raw,value=latest,enable={{is_default_branch}}
|
|
type=ref,event=branch
|
|
type=sha,prefix=
|
|
-
|
|
name: Extract metadata (Web UI)
|
|
id: meta_web
|
|
uses: docker/metadata-action@v5
|
|
with:
|
|
images: ${{ secrets.DOCKER_HUB_USERNAME }}/maigret
|
|
tags: |
|
|
type=raw,value=web,enable={{is_default_branch}}
|
|
type=ref,event=branch,suffix=-web
|
|
type=sha,prefix=web-
|
|
-
|
|
name: Build and push (CLI, default)
|
|
id: docker_build_cli
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
push: true
|
|
target: cli
|
|
tags: ${{ steps.meta_cli.outputs.tags }}
|
|
labels: ${{ steps.meta_cli.outputs.labels }}
|
|
platforms: linux/amd64,linux/arm64
|
|
cache-from: type=gha
|
|
cache-to: type=gha,mode=max
|
|
-
|
|
name: Build and push (Web UI)
|
|
id: docker_build_web
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
push: true
|
|
target: web
|
|
tags: ${{ steps.meta_web.outputs.tags }}
|
|
labels: ${{ steps.meta_web.outputs.labels }}
|
|
platforms: linux/amd64,linux/arm64
|
|
cache-from: type=gha
|
|
cache-to: type=gha,mode=max
|
|
-
|
|
name: Image digests
|
|
run: |
|
|
echo "cli: ${{ steps.docker_build_cli.outputs.digest }}"
|
|
echo "web: ${{ steps.docker_build_web.outputs.digest }}"
|