Skip to content

client-node_cog-comfyui #15

client-node_cog-comfyui

client-node_cog-comfyui #15

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:
cog-comfyui:
runs-on: ubuntu-latest
# `GITHUB_TOKEN` permissions for the actions in this job
permissions:
contents: read
packages: write
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 cog-comfyui
uses: actions/checkout@v4
with:
repository: fofr/cog-comfyui
submodules: true
- name: Clone Plugins
run: ./scripts/clone_plugins.sh
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Cog
uses: replicate/setup-cog@v1
- name: Build and Push Docker Image
run: cog push ghcr.io/paipe-labs/cog-comfyui
# client-node-comfyui:
# runs-on: ubuntu-latest
# # `GITHUB_TOKEN` permissions for the actions in this job
# permissions:
# contents: read
# packages: write
# 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: Extract Metadata (tags, labels) for Docker
# id: meta
# uses: docker/metadata-action@v5
# with:
# images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
# - name: Build and Push Docker Image
# uses: docker/build-push-action@v5
# with:
# context: .
# file: client-node-comfyui.dockerfile
# push: true
# tags: ${{ steps.meta.outputs.tags }}
# labels: ${{ steps.meta.outputs.labels }}