mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-28 10:49:55 +00:00
78 lines
2.1 KiB
YAML
78 lines
2.1 KiB
YAML
name: Build Docker image
|
|
|
|
on:
|
|
push:
|
|
|
|
env:
|
|
REGISTRY_IMAGE: |
|
|
ghcr.io/tcgdex/server
|
|
tcgdex/server
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
platform:
|
|
- linux/amd64
|
|
# - linux/arm/v6
|
|
# - linux/arm/v7
|
|
# - linux/arm64
|
|
name: Building TCGdex for #${{ matrix.platform }}
|
|
steps:
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Docker meta
|
|
id: meta
|
|
uses: docker/metadata-action@v5
|
|
with:
|
|
images: ${{ env.REGISTRY_IMAGE }}
|
|
tags: |
|
|
type=edge
|
|
type=ref,event=pr
|
|
type=ref,event=branch,prefix=branch-
|
|
type=semver,pattern={{version}}
|
|
type=semver,pattern={{major}}.{{minor}}
|
|
type=semver,pattern={{major}}
|
|
type=semver,pattern=latest
|
|
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USER }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
if: ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' }}
|
|
|
|
- name: Login to Github Packages
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.DOCKER_TOKEN }}
|
|
if: ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' }}
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
if: ${{ matrix.platform != 'linux/amd64' }}
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Build and push
|
|
id: build
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
platforms: linux/amd64,linux/arm64 # ${{ matrix.platform }}
|
|
file: ./Dockerfile
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
cache-from: type=gha
|
|
push: ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' }}
|
|
cache-to: type=gha,mode=max
|
|
|