fix: Added config directory to checkout for prod deployment
All checks were successful
Deploy to Staging / Build Images (push) Successful in 20s
Deploy to Staging / Deploy to Staging (push) Successful in 27s
Deploy to Staging / Verify Staging (push) Successful in 6s
Deploy to Staging / Notify Staging Ready (push) Successful in 5s
Deploy to Staging / Notify Staging Failure (push) Has been skipped
All checks were successful
Deploy to Staging / Build Images (push) Successful in 20s
Deploy to Staging / Deploy to Staging (push) Successful in 27s
Deploy to Staging / Verify Staging (push) Successful in 6s
Deploy to Staging / Notify Staging Ready (push) Successful in 5s
Deploy to Staging / Notify Staging Failure (push) Has been skipped
This commit is contained in:
@@ -247,13 +247,19 @@ jobs:
|
|||||||
needs: [validate, deploy-prod, verify-prod]
|
needs: [validate, deploy-prod, verify-prod]
|
||||||
if: failure()
|
if: failure()
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout scripts only
|
- name: Checkout scripts
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
sparse-checkout: scripts/
|
sparse-checkout: scripts/
|
||||||
sparse-checkout-cone-mode: true
|
sparse-checkout-cone-mode: true
|
||||||
fetch-depth: 1
|
fetch-depth: 1
|
||||||
|
|
||||||
|
- name: Checkout config
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
sparse-checkout: config/
|
||||||
|
sparse-checkout-cone-mode: true
|
||||||
|
|
||||||
- name: Execute rollback
|
- name: Execute rollback
|
||||||
run: |
|
run: |
|
||||||
cd "$DEPLOY_PATH"
|
cd "$DEPLOY_PATH"
|
||||||
|
|||||||
5
.gitignore
vendored
5
.gitignore
vendored
@@ -13,11 +13,6 @@ coverage/
|
|||||||
.venv
|
.venv
|
||||||
.playwright-mcp
|
.playwright-mcp
|
||||||
|
|
||||||
#Data Import Files
|
|
||||||
data/vehicle-etl/vehapi.key
|
|
||||||
data/vehicle-etl/snapshots/*
|
|
||||||
!data/vehicle-etl/snapshots/.gitkeep
|
|
||||||
|
|
||||||
# K8s-aligned secret mounts (real files ignored; examples committed)
|
# K8s-aligned secret mounts (real files ignored; examples committed)
|
||||||
secrets/**
|
secrets/**
|
||||||
!secrets/
|
!secrets/
|
||||||
|
|||||||
18
secrets/.gitignore
vendored
18
secrets/.gitignore
vendored
@@ -1,18 +0,0 @@
|
|||||||
# Secrets Management .gitignore
|
|
||||||
# Ensure no secrets are committed to version control
|
|
||||||
|
|
||||||
# All secret files
|
|
||||||
*.txt
|
|
||||||
!*.example.txt
|
|
||||||
|
|
||||||
# Secret directories (but keep structure)
|
|
||||||
*/
|
|
||||||
!.gitignore
|
|
||||||
|
|
||||||
# Backup files
|
|
||||||
*.bak
|
|
||||||
*.backup
|
|
||||||
|
|
||||||
# Temporary files
|
|
||||||
*.tmp
|
|
||||||
*.temp
|
|
||||||
1
secrets/app/auth0-client-secret.txt.example
Normal file
1
secrets/app/auth0-client-secret.txt.example
Normal file
@@ -0,0 +1 @@
|
|||||||
|
REPLACE_WITH_AUTH0_CLIENT_SECRET
|
||||||
1
secrets/app/auth0-management-client-id.txt.example
Normal file
1
secrets/app/auth0-management-client-id.txt.example
Normal file
@@ -0,0 +1 @@
|
|||||||
|
your-auth0-management-client-id
|
||||||
1
secrets/app/auth0-management-client-secret.txt.example
Normal file
1
secrets/app/auth0-management-client-secret.txt.example
Normal file
@@ -0,0 +1 @@
|
|||||||
|
your-auth0-management-client-secret
|
||||||
1
secrets/app/google-maps-api-key.txt.example
Normal file
1
secrets/app/google-maps-api-key.txt.example
Normal file
@@ -0,0 +1 @@
|
|||||||
|
REPLACE_WITH_GOOGLE_MAPS_API_KEY
|
||||||
1
secrets/app/postgres-password.txt.example
Normal file
1
secrets/app/postgres-password.txt.example
Normal file
@@ -0,0 +1 @@
|
|||||||
|
REPLACE_WITH_APPLICATION_DB_PASSWORD
|
||||||
1
secrets/app/resend-api-key.txt.example
Normal file
1
secrets/app/resend-api-key.txt.example
Normal file
@@ -0,0 +1 @@
|
|||||||
|
re_xxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
||||||
Reference in New Issue
Block a user