fix(ci): checkout repository in prepare job to fix priority-gate execution crash
Some checks failed
Build & Deploy / 🔍 Prepare (push) Failing after 25s
Build & Deploy / 🧪 QA (push) Has been skipped
Build & Deploy / 🏗️ Build (push) Has been skipped
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 3s

This commit is contained in:
2026-06-18 13:59:53 +02:00
parent 276ceed010
commit 42cd4394c7
12 changed files with 47 additions and 16 deletions

View File

@@ -37,6 +37,8 @@ jobs:
container:
image: catthehacker/ubuntu:act-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: 🧹 Maintenance (High Density Cleanup)
shell: bash
run: |
@@ -126,15 +128,21 @@ jobs:
GATEKEEPER_HOST="gatekeeper.$PRIMARY_HOST"
{
echo "target=staging"
echo "image_tag=test"
echo "env_file=.env.staging"
echo "traefik_host=staging.e-tib.com"
echo "traefik_rule=Host(\`staging.e-tib.com\`)"
echo "gatekeeper_host=gatekeeper.staging.e-tib.com"
echo "next_public_url=https://staging.e-tib.com"
echo "project_name=etib-staging"
echo "short_sha=1234567"
echo "target=$TARGET"
echo "image_tag=$IMAGE_TAG"
echo "env_file=$ENV_FILE"
echo "traefik_host=$PRIMARY_HOST"
echo "traefik_rule=$TRAEFIK_RULE"
echo "gatekeeper_host=$GATEKEEPER_HOST"
echo "next_public_url=https://$PRIMARY_HOST"
if [[ "$TARGET" == "production" ]]; then
echo "project_name=etib-production"
elif [[ "$TARGET" == "branch" ]]; then
echo "project_name=$PRJ-branch-$SLUG"
else
echo "project_name=$PRJ-$TARGET"
fi
echo "short_sha=$SHORT_SHA"
} >> "$GITHUB_OUTPUT"
- name: 🚦 Priority Gate