mirror of
https://github.com/zitadel/zitadel.git
synced 2025-03-01 18:27:24 +00:00
41 lines
848 B
YAML
41 lines
848 B
YAML
name: "Docker Bake Test"
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- docker-bake
|
|
|
|
jobs:
|
|
unloaded:
|
|
timeout-minutes: 20
|
|
runs-on:
|
|
group: zitadel-public
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: docker/setup-buildx-action@v3
|
|
- uses: docker/bake-action@v6
|
|
with:
|
|
source: .
|
|
push: false
|
|
targets: build, lint ,core-unit
|
|
no-cache: true
|
|
load: true
|
|
|
|
loaded:
|
|
timeout-minutes: 20
|
|
runs-on:
|
|
group: zitadel-public
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: docker/setup-buildx-action@v3
|
|
- uses: docker/bake-action@v6
|
|
with:
|
|
source: .
|
|
push: false
|
|
targets: build, lint ,core-unit
|
|
no-cache: true
|
|
load: false |