Agregar variables de entorno PostgreSQL al workflow
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 15s
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 15s
- Agregar POSTGRES_USER, POSTGRES_PASSWORD, POSTGRES_DB al env - Usar valores por defecto si no están definidos en vars/secrets - Fix deployment error: container postgres unhealthy
This commit is contained in:
@@ -13,6 +13,10 @@ jobs:
|
||||
APP_NAME: ${{ vars.APP_NAME }}
|
||||
APP_DOMAIN: ${{ vars.APP_DOMAIN }}
|
||||
NUXT_PUBLIC_APP_URL: ${{ vars.NUXT_PUBLIC_APP_URL }}
|
||||
# PostgreSQL
|
||||
POSTGRES_USER: ${{ vars.POSTGRES_USER || 'seguidor' }}
|
||||
POSTGRES_PASSWORD: ${{ secrets.POSTGRES_PASSWORD || 'seguidor_password' }}
|
||||
POSTGRES_DB: ${{ vars.POSTGRES_DB || 'seguidor_lotes' }}
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
|
||||
Reference in New Issue
Block a user