Skip to content

Commit

Permalink
env fixes on actions
Browse files Browse the repository at this point in the history
  • Loading branch information
garciajg committed Dec 15, 2023
1 parent 200a38c commit 16d7a84
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/development.release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ on:
workflow_dispatch:

env:
DB_USERNAME = ${{ secrets.DB_USERNAME }}
DB_PASSWORD = ${{ secrets.DB_PASSWORD }}
DB_HOST = ${{ secrets.DB_HOST }}
DB_PORT = ${{ secrets.DB_PORT }}
DB_DATABASE = ${{ secrets.DB_DATABASE }}
DB_USERNAME: ${{ secrets.DB_USERNAME }}
DB_PASSWORD: ${{ secrets.DB_PASSWORD }}
DB_HOST: ${{ secrets.DB_HOST }}
DB_PORT: ${{ secrets.DB_PORT }}
DB_DATABASE: ${{ secrets.DB_DATABASE }}

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
Expand Down

0 comments on commit 16d7a84

Please sign in to comment.