Docker Publish ComfyUI #31
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 Publish ComfyUI | |
on: | |
schedule: | |
- cron: '0 0 * * 0' # Fixed cron syntax | |
push: | |
branches: [ "main" ] | |
paths: | |
- 'docker/**' | |
- '.github/workflows/docker-publish.yml' | |
tags: [ 'v*.*.*' ] | |
pull_request: | |
branches: [ "main" ] | |
paths: | |
- 'docker/**' | |
- '.github/workflows/docker-publish.yml' | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository }}-comfyui | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write # Added write permission for tag creation | |
packages: write | |
id-token: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Fetch all history for versioning | |
- name: Get latest version tag | |
id: get_version | |
run: | | |
latest_tag=$(git tag -l 'v*' | sort -V | tail -n1) | |
if [ -z "$latest_tag" ]; then | |
echo "version=v1.0.0" >> $GITHUB_OUTPUT | |
else | |
patch=$(echo $latest_tag | awk -F. '{ print $3 }') | |
new_patch=$((patch + 1)) | |
new_tag="v1.0.${new_patch}" | |
echo "version=$new_tag" >> $GITHUB_OUTPUT | |
fi | |
- name: Create and push tag | |
if: github.event_name != 'pull_request' | |
run: | | |
git config --local user.email "action@github.com" | |
git config --local user.name "GitHub Action" | |
git tag -a ${{ steps.get_version.outputs.version }} -m "Release ${{ steps.get_version.outputs.version }}" | |
git push origin ${{ steps.get_version.outputs.version }} | |
- name: Install cosign | |
if: github.event_name != 'pull_request' | |
uses: sigstore/cosign-installer@59acb6260d9c0ba8f4a2f9d9b48431a222b68e20 | |
with: | |
cosign-release: 'v2.2.4' | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 | |
- name: Log into registry ${{ env.REGISTRY }} | |
if: github.event_name != 'pull_request' | |
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract Docker metadata | |
id: meta | |
uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 | |
with: | |
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
tags: | | |
type=raw,value=latest,enable={{is_default_branch}} | |
type=raw,value=${{ steps.get_version.outputs.version }} | |
type=ref,event=branch | |
type=ref,event=pr | |
type=semver,pattern={{version}} | |
type=sha | |
- name: Build and push Docker image | |
id: build-and-push | |
uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 | |
with: | |
context: . | |
file: docker/comfyui/Dockerfile | |
push: ${{ github.event_name != 'pull_request' }} | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- name: Sign the published Docker image | |
if: ${{ github.event_name != 'pull_request' }} | |
env: | |
TAGS: ${{ steps.meta.outputs.tags }} | |
DIGEST: ${{ steps.build-and-push.outputs.digest }} | |
run: echo "${TAGS}" | xargs -I {} cosign sign --yes {}@${DIGEST} |