mirror of
https://github.com/zitadel/zitadel.git
synced 2025-10-20 21:59:14 +00:00
50 lines
1.0 KiB
YAML
50 lines
1.0 KiB
YAML
name: "name: ZITADEL CI"
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- docker-bake
|
|
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
|
|
jobs:
|
|
depot-gh-cache:
|
|
timeout-minutes: 20
|
|
runs-on: depot-ubuntu-22.04-8
|
|
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: ci
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: depot-gh-cache
|
|
path: .build
|
|
include-hidden-files: true
|
|
|
|
depot-cache:
|
|
timeout-minutes: 20
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: depot/setup-action@v1
|
|
- uses: depot/bake-action@v1
|
|
with:
|
|
project: w47wkxzdtw
|
|
push: false
|
|
targets: ci
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: depot-cache
|
|
path: .build
|
|
include-hidden-files: true
|