Skip to content

Commit

Permalink
fix empty db url
Browse files Browse the repository at this point in the history
  • Loading branch information
anishsapkota committed Jan 29, 2025
1 parent 2ef48d3 commit 3298337
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy_with_db.yml
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ jobs:
image: 'docker.io/proceed/ms-server:${{ env.MS_TAG }}'
env_vars: |
NEXTAUTH_URL=https://${{ env.SUBDOMAIN }}.proceed-labs.org
DATABASE_URL=${{ env.DATABASE_URL }}
DATABASE_URL=${{ steps.configure-connection.outputs.DATABASE_URL }}
PROCEED_PUBLIC_DEPLOYMENT_ENV=local
region: 'europe-west1'
revision_traffic: LATEST=100
Expand All @@ -356,7 +356,7 @@ jobs:
image: docker.io/proceed/ms-server:${{ env.MS_TAG }}
token: ${{ secrets.GITHUB_TOKEN }}
region: 'europe-west1'
env_vars: '{"DATABASE_URL": "${{env.DATABASE_URL}}", "PROCEED_PUBLIC_DEPLOYMENT_ENV":"local", "PROCEED_PUBLIC_ENABLE_EXECUTION": "true"}'
env_vars: '{"DATABASE_URL": "${{ steps.configure-connection.outputs.DATABASE_URL }}", "PROCEED_PUBLIC_DEPLOYMENT_ENV":"local", "PROCEED_PUBLIC_ENABLE_EXECUTION": "true"}'

githubEnvironment:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 3298337

Please sign in to comment.