Skip to content

client-node_comfyui-setup #8

client-node_comfyui-setup

client-node_comfyui-setup #8

name: Publish client-node Docker Images to ghcr.io
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
client-node-comfyui:
runs-on: ubuntu-latest
# `GITHUB_TOKEN` permissions for the actions in this job
permissions:
contents: read
packages: write
strategy:
fail-fast: false
matrix:
base:
- "pytorch"
- "jupyter-pytorch"
python:
- "3.10"
pytorch:
- "2.1.2"
- "2.2.0"
cuda:
- "11.8.0"
- "12.1.0"
level:
- "runtime"
steps:
-
name: Free Space
run: |
df -h
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf /usr/local/.ghcup
sudo rm -rf /usr/local/share/boost
sudo rm -rf /usr/local/lib/android
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
df -h
-
name: Checkout
uses: actions/checkout@v4
-
name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and Push Docker Image
uses: docker/build-push-action@v5
with:
context: .
file: client-node-comfyui.dockerfile
tags: comfyui-gpu
push: true
provenance: false