Skip to content
This repository has been archived by the owner on Oct 4, 2024. It is now read-only.

Commit

Permalink
Fix missing env vars on deployments (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
klaus993 authored Sep 22, 2023
1 parent 1ef9a49 commit d35519b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/deploy-production.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ jobs:
- name: "Deploy with ansible"
env:
MIX_ENV: ${{ vars.MIX_ENV }}
DATABASE_PATH: ${{ vars.DATABASE_PATH }}
DB_TYPE: ${{ vars.DB_TYPE }}
DATABASE_URL: ${{ vars.DATABASE_URL }}
SECRET_KEY_BASE: ${{ secrets.SECRET_KEY_BASE }}
PHX_HOST: ${{ vars.PHX_HOST }}
PHX_SERVER: ${{ vars.PHX_SERVER }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/deploy-testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ jobs:
- name: "Deploy with ansible"
env:
MIX_ENV: ${{ vars.MIX_ENV }}
DATABASE_PATH: ${{ vars.DATABASE_PATH }}
DB_TYPE: ${{ vars.DB_TYPE }}
DATABASE_URL: ${{ vars.DATABASE_URL }}
SECRET_KEY_BASE: ${{ secrets.SECRET_KEY_BASE }}
PHX_HOST: ${{ vars.PHX_HOST }}
PHX_SERVER: ${{ vars.PHX_SERVER }}
Expand Down

0 comments on commit d35519b

Please sign in to comment.