ComfyUI/.github/workflows/docker-build.yml
doctorpangloss 83fddf4cb5 fix tagging
2025-11-10 11:51:49 -08:00

57 lines
1.8 KiB
YAML

name: Build and Publish Docker Image
on:
push:
env:
REGISTRY: ghcr.io
IMAGE_NAME: hiddenswitch/comfyui
jobs:
build:
runs-on: "ubuntu-latest"
environment: Testing
permissions:
contents: read
packages: write
steps:
- uses: insightsengineering/disk-space-reclaimer@v1
with:
android: true
dotnet: true
haskell: true
large-packages: true
docker-images: true
swap-storage: true
- uses: actions/checkout@v4
- uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/login-action@v3
with:
registry: nvcr.io
username: "$oauthtoken"
password: ${{ secrets.NVCR_NGC_TOKEN }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=raw,value=latest-cuda,enable={{is_default_branch}}
type=sha,prefix=
type=sha,prefix=,suffix=-cuda
type=match,pattern=v?(\d+\.\d+\.\d+\.\d+),group=1
type=match,pattern=v?(\d+\.\d+\.\d+\.\d+),group=1,suffix=-cuda
type=match,pattern=v?(\d+\.\d+\.\d+),group=1
type=match,pattern=v?(\d+\.\d+\.\d+),group=1,suffix=-cuda
type=match,pattern=v?(\d+\.\d+),group=1
type=match,pattern=v?(\d+\.\d+),group=1,suffix=-cuda
- name: Build and push CUDA (NVIDIA) image
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}