mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-07 07:16:54 +00:00
# Which Problems Are Solved The persistent depot runner lost connection to GitHub. # How the Problems Are Solved We mitigate by switching to GitHub ephemeral runners. # Additional Context - Example of a failing run https://github.com/zitadel/zitadel/actions/runs/16505756293/job/46675827321 - Might be caused by https://github.com/zitadel/zitadel/actions/runs/16500656577/job/46658046270
71 lines
2.0 KiB
YAML
71 lines
2.0 KiB
YAML
name: Login Container
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
login_build_image_name:
|
|
description: 'The image repository name of the standalone login image'
|
|
type: string
|
|
required: true
|
|
node_version:
|
|
required: true
|
|
type: string
|
|
outputs:
|
|
login_build_image:
|
|
description: 'The full image tag of the standalone login image'
|
|
value: '${{ inputs.login_build_image_name }}:${{ github.sha }}'
|
|
secrets:
|
|
DEPOT_TOKEN:
|
|
required: true
|
|
|
|
permissions:
|
|
packages: write
|
|
|
|
env:
|
|
default_labels: |
|
|
org.opencontainers.image.documentation=https://zitadel.com/docs
|
|
org.opencontainers.image.vendor=CAOS AG
|
|
org.opencontainers.image.licenses=MIT
|
|
|
|
jobs:
|
|
login-container:
|
|
name: Build Login Container
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
packages: write
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: depot/setup-action@v1
|
|
- name: Login meta
|
|
id: login-meta
|
|
uses: docker/metadata-action@v5
|
|
with:
|
|
images: ${{ inputs.login_build_image_name }}
|
|
labels: ${{ env.default_labels}}
|
|
annotations: |
|
|
manifest:org.opencontainers.image.licenses=MIT
|
|
tags: |
|
|
type=sha,prefix=,suffix=,format=long
|
|
- name: Login to Docker registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Bake login multi-arch
|
|
uses: depot/bake-action@v1
|
|
env:
|
|
DEPOT_TOKEN: ${{ secrets.DEPOT_TOKEN }}
|
|
NODE_VERSION: ${{ inputs.node_version }}
|
|
with:
|
|
push: true
|
|
provenance: true
|
|
sbom: true
|
|
targets: login-standalone
|
|
project: w47wkxzdtw
|
|
files: |
|
|
./apps/login/docker-bake.hcl
|
|
./apps/login/docker-bake-release.hcl
|
|
./docker-bake.hcl
|
|
cwd://${{ steps.login-meta.outputs.bake-file }}
|