diff --git a/.github/ISSUE_TEMPLATE/bug.md b/.github/ISSUE_TEMPLATE/bug.md index 0ea8726..51a1a45 100644 --- a/.github/ISSUE_TEMPLATE/bug.md +++ b/.github/ISSUE_TEMPLATE/bug.md @@ -7,13 +7,17 @@ assignees: '' --- -**Has this issue been opened before? Check the [FAQ](https://github.com/AbdBarho/stable-diffusion-webui-docker/wiki/Main), the [issues](https://github.com/AbdBarho/stable-diffusion-webui-docker/issues?q=is%3Aissue) and in [the issues in the WebUI repo](https://github.com/hlky/stable-diffusion-webui)** +**Has this issue been opened before? Check the [FAQ](https://github.com/AbdBarho/stable-diffusion-webui-docker/wiki/Main), the [issues](https://github.com/AbdBarho/stable-diffusion-webui-docker/issues?q=is%3Aissue)** **Describe the bug** +**Which UI** + +hlky or auto or auto-cpu or lstein? + **Steps to Reproduce** 1. Go to '...' 2. Click on '....' @@ -22,8 +26,11 @@ assignees: '' **Hardware / Software:** - OS: [e.g. Windows / Ubuntu and version] + - RAM: - GPU: [Nvidia 1660 / No GPU] - - Version [e.g. 22] + - VRAM: + - Docker Version, Docker compose version + - Release version [e.g. 1.0.1] **Additional context** Any other context about the problem here. If applicable, add screenshots to help explain your problem. diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 7a5a589..d17496c 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -3,13 +3,17 @@ name: Build Images on: [push] jobs: - build_all: + build: + strategy: + matrix: + profile: + - auto + - hlky + - lstein + - download runs-on: ubuntu-latest - name: All + name: ${{ matrix.profile }} steps: - uses: actions/checkout@v3 # better caching? - - run: docker compose --profile auto build --progress plain - - run: docker compose --profile hlky build --progress plain - - run: docker compose --profile lstein build --progress plain - - run: docker compose --profile download build --progress plain + - run: docker compose --profile ${{ matrix.profile }} build --progress plain