[deviantart] improve 'tiptap' conversion (#6207) #106
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: ${{ | |
github.repository == 'mikf/gallery-dl' && | |
( ! 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 'YYYY.MM.DD'}} | |
- 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 |