Skip to content

Commit

Permalink
Use personal access token instead of password for DockerHub - closes #…
Browse files Browse the repository at this point in the history
  • Loading branch information
benfrancis committed Sep 30, 2024
1 parent 130dfd4 commit 01e96b5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dockerhub-description.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ jobs:
uses: peter-evans/dockerhub-description@v2
with:
username: ${{ secrets.DOCKER_HUB_USER }}
password: ${{ secrets.DOCKER_HUB_REAL_PASSWORD }}
password: ${{ secrets.DOCKER_HUB_PAT }}
repository: webthingsio/registration-server
2 changes: 1 addition & 1 deletion .github/workflows/release-mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ jobs:
buildArg: db_type=mysql
tag: mysql,${{ env.RELEASE_VERSION }}-mysql
dockerHubUser: ${{ secrets.DOCKER_HUB_USER }}
dockerHubPassword: ${{ secrets.DOCKER_HUB_PASSWORD }}
dockerHubPassword: ${{ secrets.DOCKER_HUB_PAT }}
2 changes: 1 addition & 1 deletion .github/workflows/release-postgres.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ jobs:
buildArg: db_type=postgres
tag: postgres,${{ env.RELEASE_VERSION }}-postgres
dockerHubUser: ${{ secrets.DOCKER_HUB_USER }}
dockerHubPassword: ${{ secrets.DOCKER_HUB_PASSWORD }}
dockerHubPassword: ${{ secrets.DOCKER_HUB_PAT }}
2 changes: 1 addition & 1 deletion .github/workflows/release-sqlite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ jobs:
buildArg: db_type=sqlite
tag: sqlite,${{ env.RELEASE_VERSION }}-sqlite
dockerHubUser: ${{ secrets.DOCKER_HUB_USER }}
dockerHubPassword: ${{ secrets.DOCKER_HUB_PASSWORD }}
dockerHubPassword: ${{ secrets.DOCKER_HUB_PAT }}

0 comments on commit 01e96b5

Please sign in to comment.