We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffc20fa commit 7a5b4a6Copy full SHA for 7a5b4a6
.github/workflows/tests.yaml
@@ -33,8 +33,8 @@ jobs:
33
- name: Replace secrets in application.properties
34
run: |
35
sed -i "s#DB_CONN_STR#${{ vars.DB_CONN_STR }}#g" src/main/resources/application.properties
36
- sed -i "s#DB_USER#${{ vars.DB_USERNAME }}#g" src/main/resources/application.properties
37
- sed -i "s#DB_PASS#${{ secrets.DB_PASSWORD }}#g" src/main/resources/application.properties
+ sed -i "s#DB_USERNAME#${{ vars.DB_USERNAME }}#g" src/main/resources/application.properties
+ sed -i "s#DB_PASSWORD#${{ secrets.DB_PASSWORD }}#g" src/main/resources/application.properties
38
39
# Print the updated file for verification
40
cat ./src/main/resources/application.properties
0 commit comments