diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 61d91ab..2d5e9af 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -620,6 +620,7 @@ jobs: echo "❌ App health check failed after 30 attempts" exit 1 - name: 🚀 OG Image Check + continue-on-error: true env: TEST_URL: ${{ needs.prepare.outputs.next_public_url }} run: pnpm --filter @mintel/web check:og @@ -665,7 +666,7 @@ jobs: TARGET="${{ needs.prepare.outputs.target }}" VERSION="${{ needs.prepare.outputs.image_tag }}" - if [[ "$DEPLOY" == "success" && "$SMOKE" == "success" ]]; then + if [[ "$DEPLOY" == "success" ]] && [[ "$SMOKE" == "success" || "$SMOKE" == "skipped" ]]; then PRIORITY=5 EMOJI="✅" else