Skip to content

Commit

Permalink
hardcode env
Browse files Browse the repository at this point in the history
  • Loading branch information
timothy-lew committed Dec 30, 2024
1 parent 56a6e25 commit 7a6fac6
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,14 @@ jobs:
runs-on: ubuntu-24.04

env:
DB_SERVER_DEV: ${{ secrets.DB_SERVER_DEV }}
DB_DATABASE_DEV: ${{ secrets.DB_DATABASE_DEV }}
DB_DATABASE_PORT: ${{ secrets.DB_DATABASE_PORT }}
DB_USERNAME_DEV: ${{ secrets.DB_USERNAME_DEV }}
DB_PASSWORD_DEV: ${{ secrets.DB_PASSWORD_DEV }}
# DB_SERVER_DEV: ${{ secrets.DB_SERVER_DEV }}
# DB_DATABASE_DEV: ${{ secrets.DB_DATABASE_DEV }}
# DB_DATABASE_PORT: ${{ secrets.DB_DATABASE_PORT }}
DB_SERVER_DEV: 10.96.188.172
DB_DATABASE_DEV: "fyp_dev_tim"
DB_DATABASE_PORT: 1433
# DB_USERNAME_DEV: ${{ secrets.DB_USERNAME_DEV }}
# DB_PASSWORD_DEV: ${{ secrets.DB_PASSWORD_DEV }}


steps:
Expand Down

0 comments on commit 7a6fac6

Please sign in to comment.