Skip to content

Commit

Permalink
feat: Add Google variables secrets to env
Browse files Browse the repository at this point in the history
Added Google Client_id and client_secret to env on Set up Database. Also
added sms_username and sms_api_key variables
  • Loading branch information
LionelMv committed Sep 25, 2024
1 parent e6fc1b3 commit 6a76c0d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,11 @@ jobs:
DB_PASSWORD: ${{ secrets.DB_PASSWORD }}
DB_HOST: ${{ secrets.DB_HOST }}
DB_PORT: ${{ secrets.DB_PORT }}
DB_NAME: ${{ secrets.DB_NAME }}
DB_NAME: ${{ secrets.DB_NAME }}
GOOGLE_CLIENT_ID: ${{ secrets.GOOGLE_CLIENT_ID }}
GOOGLE_CLIENT_SECRET: ${{ secrets.GOOGLE_CLIENT_SECRET }}
SMS_USERNAME: ${{ secrets.SMS_USERNAME }}
SMS_API_KEY: ${{ secrets.SMS_API_KEY }}
DATABASE_URL: postgresql://${{ secrets.DB_USER }}:${{ secrets.DB_PASSWORD }}@${{ secrets.DB_HOST }}:${{ secrets.DB_PORT }}/{{ secrets.DB_NAME }}
run: |
pipenv run python manage.py migrate
Expand Down

0 comments on commit 6a76c0d

Please sign in to comment.