immich-exporter/.github/workflows/docker.yml

70 lines
1.9 KiB
YAML
Raw Normal View History

name: docker
2023-11-22 01:25:06 +01:00
on:
workflow_dispatch:
inputs:
tags:
2023-10-19 20:19:59 +02:00
description: "version"
2023-11-22 01:25:06 +01:00
required: false
type: string
2023-11-22 01:25:06 +01:00
release:
types:
- created
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build_and_push:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
2023-10-19 20:19:59 +02:00
ref: "main"
fetch-depth: 0
2023-10-19 20:19:59 +02:00
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
2024-01-10 13:49:12 +01:00
${{ github.repository_owner }}/${{ github.event.repository.name }}
2023-10-19 20:19:59 +02:00
ghcr.io/${{ github.repository_owner }}/${{ github.event.repository.name }}
tags: |
2023-12-19 03:14:05 +01:00
type=raw,value=latest,enable=${{ github.event_name == 'release' }}
type=ref,event=branch
type=ref,event=pr
2023-12-23 22:28:19 +01:00
type=ref,event=tag
2023-12-19 03:14:05 +01:00
type=raw,value=${{ inputs.tags }},enable=${{ github.event_name == 'workflow_dispatch' }}
2023-10-19 20:19:59 +02:00
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
2023-10-19 20:19:59 +02:00
username: ${{ github.repository_owner }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
2023-10-19 20:19:59 +02:00
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GH_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: ./
platforms: linux/arm/v7,linux/amd64,linux/arm64
2023-12-19 03:14:05 +01:00
push: ${{ !github.event.pull_request.head.repo.fork }}
2023-10-19 20:19:59 +02:00
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}