Skip to content

Commit

Permalink
username/password config change (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kristel committed Nov 17, 2024
1 parent 9879fc6 commit 6296430
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ jobs:
cache: maven
- name: Build with Maven
env:
tado.username: ${{ secrets.TADO_USERNAME }}
tado.password: ${{ secrets.TADO_PASSWORD }}
TADO_USERNAME: ${{ secrets.TADO_USERNAME }}
TADO_PASSWORD: ${{ secrets.TADO_PASSWORD }}
run: mvn --batch-mode --update-snapshots verify -P local-api-spec --file pom.xml

# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
Expand Down
4 changes: 2 additions & 2 deletions tado-api-test/src/test/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ spring:

tado:
# use environment variable values as application property values
username: ${tado.username}
password: ${tado.password}
username: ${TADO_USERNAME}
password: ${TADO_PASSWORD}

home:
id: 1118186
Expand Down

0 comments on commit 6296430

Please sign in to comment.