mirror of
https://github.com/AbdBarho/stable-diffusion-webui-docker.git
synced 2025-10-27 08:14:26 -04:00
As discussed in Discussion [#367](https://github.com/AbdBarho/stable-diffusion-webui-docker/discussions/367), this adds support for the newer ComfyUI. I forked the fork that would already add this but the maintainer of that fork hasn't implemented the changes needed to properly get the output function working, which I did. I believe everything is functional though I have not tested every single node. I changed the table format for the README and a few other minor things for aesthetic reasons but if you want me to revert those, I will. --------- Co-authored-by: Jonathan Kovacs <jkovacs-dev@users.noreply.github.com> Co-authored-by: AbdBarho <ka70911@gmail.com>
26 lines
471 B
YAML
26 lines
471 B
YAML
name: Build Images
|
|
|
|
on:
|
|
push:
|
|
branches: master
|
|
pull_request:
|
|
paths:
|
|
- docker-compose.yml
|
|
- services
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
profile:
|
|
- auto
|
|
- sygil
|
|
- invoke
|
|
- comfy
|
|
- download
|
|
runs-on: ubuntu-latest
|
|
name: ${{ matrix.profile }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- run: docker compose --profile ${{ matrix.profile }} build --progress plain
|