mirror of
https://github.com/eliasstepanik/stable-diffusion-webui-docker.git
synced 2026-01-11 21:18:27 +00:00
13 lines
261 B
YAML
13 lines
261 B
YAML
name: Build Image
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build_docker:
|
|
runs-on: ubuntu-latest
|
|
name: Make sure the image builds
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
# TODO: how to cache intermediate images?
|
|
- run: docker compose build --progress plain
|