Skip to content

download all of TAESD #12

download all of TAESD

download all of TAESD #12

Workflow file for this run

name: Publish 'cu121' to Docker Hub
on:
workflow_dispatch: # Can be manually triggered
schedule: # Runs on every Monday, 07:00 UTC
- cron: '0 7 * * 1'
push:
branches: [ main ]
paths-ignore:
- '**'
- '!cu121/Dockerfile'
- '!cu121/scripts/**'
- '!.github/workflows/build-cu121.yml'
jobs:
build-publish-cu121:
environment: Publish to Docker Hub
runs-on: ubuntu-latest
steps:
-
name: Get current date
id: date
run: echo "date=$(date +'%Y%m%d')" >> $GITHUB_OUTPUT
-
name: Maximize build disk space
uses: easimon/maximize-build-space@master
with:
overprovision-lvm: 'true'
remove-android: 'true'
-
name: Git checkout
uses: actions/checkout@v4
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_ACCESSTOKEN }}
-
name: Build and push 'cu121'
uses: docker/build-push-action@v6
with:
context: ./cu121
file: ./cu121/Dockerfile
tags: |
yanwk/comfyui-boot:latest
yanwk/comfyui-boot:cu121
yanwk/comfyui-boot:cu121-${{ steps.date.outputs.date }}
push: true