Skip to content

Commit e422532

Browse files
authored
Change DB_USER secrets for build environment
Updated database user secrets for the build environment in GitHub Actions workflow.
1 parent 1ce9155 commit e422532

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

github-actions/workflows/deploy-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ env:
1515

1616
# Repository Secrets - Create these in Project Settings > Secrets > Actions
1717
TOKEN: ${{ secrets.FLYWAY_TOKEN }}
18-
DB_USER_Build: ${{ secrets.DB_USER_NAME_QA }}
19-
DB_USER_PW_Build: ${{ secrets.DB_USER_PW_QA }}
18+
DB_USER_Build: ${{ secrets.DB_USER_NAME_BUILD }}
19+
DB_USER_PW_Build: ${{ secrets.DB_USER_PW_BUILD }}
2020
FIRST_UNDO_SCRIPT: ${{ secrets.FIRST_UNDO_SCRIPT }} # Validates all undo scripts up to and including the specified script
2121

2222
# jobs are the steps executed in the workflow
@@ -26,7 +26,7 @@ jobs:
2626
# runs-on: ubuntu-latest
2727
defaults:
2828
run:
29-
shell: cmd # Default shell. Use Windows Command Prompt
29+
shell: cmd # Default shell. Use Windows Command Prompt. bash for linux.
3030
steps: # Steps are the individual tasks that are executed in the job
3131
- name: Checkout Repository # Step to check out the repository
3232
uses: actions/checkout@v4

0 commit comments

Comments
 (0)