mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-23 03:02:50 +01:00
36fc510d3a
- run on every push to master - build images from GitHub source instead of PyPI package - build arm64 image (#5227) - include more tags - build date as 'YYYYMMDD' - 'dev' for most recent build from master - 'latest' for most recent release build
66 lines
1.5 KiB
YAML
66 lines
1.5 KiB
YAML
name: Docker Images
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- master
|
|
tags:
|
|
- v[0-9]+.[0-9]+.[0-9]+
|
|
|
|
|
|
permissions:
|
|
packages: write
|
|
|
|
concurrency:
|
|
group: docker
|
|
cancel-in-progress: false
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
# on release commits, run only for tag event
|
|
if: ${{ ! startsWith( github.event.head_commit.message , 'release version ' ) || startsWith( github.ref , 'refs/tags/v' ) }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: docker/metadata-action@v5
|
|
id: metadata
|
|
with:
|
|
images: |
|
|
mikf123/gallery-dl
|
|
ghcr.io/mikf/gallery-dl
|
|
tags: |
|
|
type=ref,event=tag
|
|
type=raw,value=dev
|
|
type=sha,format=long,prefix=
|
|
type=raw,priority=500,value={{date 'YYYYMMDD'}}
|
|
|
|
- uses: docker/setup-qemu-action@v3
|
|
|
|
- uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Login to GitHub Container Registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.repository_owner }}
|
|
password: ${{ secrets.GHCR_TOKEN }}
|
|
|
|
- uses: docker/build-push-action@v5
|
|
with:
|
|
context: .
|
|
push: true
|
|
tags: ${{ steps.metadata.outputs.tags }}
|
|
labels: ${{ steps.metadata.outputs.labels }}
|
|
platforms: linux/amd64,linux/arm64
|