2022-09-11 18:18:50 +00:00
|
|
|
name: Build Images
|
2022-09-03 15:36:19 +00:00
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
2022-09-15 20:02:38 +00:00
|
|
|
build:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
profile:
|
|
|
|
- auto
|
|
|
|
- hlky
|
|
|
|
- lstein
|
|
|
|
- download
|
2022-09-03 15:36:19 +00:00
|
|
|
runs-on: ubuntu-latest
|
2022-09-15 20:02:38 +00:00
|
|
|
name: ${{ matrix.profile }}
|
2022-09-03 15:36:19 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2022-09-11 18:18:50 +00:00
|
|
|
# better caching?
|
2022-09-15 20:02:38 +00:00
|
|
|
- run: docker compose --profile ${{ matrix.profile }} build --progress plain
|