Skip to content

Commit

Permalink
Merge pull request #9 from mrpalide/fix/change-dockerhub-variable-on-…
Browse files Browse the repository at this point in the history
…deploy

fix GitHub Action
  • Loading branch information
jdknives authored Sep 3, 2023
2 parents 2182d14 + be361c8 commit 3186a8c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.USERNAME }}
password: ${{ secrets.TOKEN }}
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: actions/checkout@v3
- name: Deploy develop
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.USERNAME }}
password: ${{ secrets.TOKEN }}
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: actions/checkout@v3
- name: Deploy master
run: |
Expand Down

0 comments on commit 3186a8c

Please sign in to comment.