Skip to content

Commit

Permalink
Create docker.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
vanvianen committed Jul 21, 2024
1 parent fc39c07 commit 9af3cb7
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build Images

on:
push:
branches: master
pull_request:
paths:
- docker-compose.yml
- services

jobs:
build:
strategy:
matrix:
profile:
- auto
- comfy
- download
runs-on: ubuntu-latest
name: ${{ matrix.profile }}
steps:
- uses: actions/checkout@v3
- run: docker compose --profile ${{ matrix.profile }} build --progress plain

0 comments on commit 9af3cb7

Please sign in to comment.