debug: add back job-level env secret reference to isolate the failure
All checks were successful
build-and-release / build (catering-services) (push) Successful in 9s
build-and-release / build (companies) (push) Successful in 8s
build-and-release / build (cron) (push) Successful in 9s
build-and-release / build (customers) (push) Successful in 8s
build-and-release / build (developers) (push) Successful in 9s
build-and-release / build (employees) (push) Successful in 9s
build-and-release / build (fitness-trainers) (push) Successful in 8s
build-and-release / build (gateway) (push) Successful in 9s
build-and-release / build (job-seekers) (push) Successful in 8s
build-and-release / build (jobs) (push) Successful in 9s
build-and-release / build (makeup-artists) (push) Successful in 8s
build-and-release / build (payments) (push) Successful in 9s
build-and-release / build (photographers) (push) Successful in 8s
build-and-release / build (tutors) (push) Successful in 8s
build-and-release / build (ugc-content-creators) (push) Successful in 8s
build-and-release / build (users) (push) Successful in 11s
build-and-release / build (video-editors) (push) Successful in 9s
backend-integration-tests / ai-credits (push) Successful in 4s
build-and-release / build (social-media-managers) (push) Successful in 52s
build-and-release / build (graphic-designers) (push) Successful in 2m33s

This commit is contained in:
Ashwin Kumar Sivakumar 2026-08-13 17:55:30 +05:30
parent e80c58641f
commit 22cbd3e285

View file

@ -13,6 +13,8 @@ concurrency:
jobs:
ai-credits:
runs-on: docker-ready
env:
TEST_DATABASE_URL: ${{ secrets.TEST_DATABASE_URL }}
steps:
- name: Checkout
uses: actions/checkout@v4
@ -20,4 +22,4 @@ jobs:
fetch-depth: 0
- name: Debug echo
run: echo "hello from ai-credits job"
run: echo "hello from ai-credits job, TEST_DATABASE_URL is set = $([ -n "$TEST_DATABASE_URL" ] && echo yes || echo no)"