Skip to content

Commit

Permalink
fix?
Browse files Browse the repository at this point in the history
  • Loading branch information
mkjmdski committed Jul 27, 2022
1 parent 5f4c4e3 commit 91d8da7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/continous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name: "Continous Delivery Workflow"
"on":
workflow_call:
secrets:
DOCKERHUB_USERNAME:
USERNAME:
required: true
DOCKERHUB_PASSWORD:
PASSWORD:
required: true

env:
Expand All @@ -28,8 +28,8 @@ jobs:
if: ${{ !github.event.repository.private }}
with:
registry: registry.hub.docker.com
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}

- name: Log in to the Container registry
uses: docker/login-action@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/continous-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
needs: integration
uses: ./.github/workflows/continous-delivery.yml
secrets:
DOCKERHUB_USERNAME: ${ secrets.DOCKERHUB_USERNAME }
DOCKERHUB_PASSWORD: ${ secrets.DOCKERHUB_PASSWORD }
USERNAME: ${ secrets.DOCKERHUB_USERNAME }
PASSWORD: ${ secrets.DOCKERHUB_PASSWORD }
update-manifest-repo:
needs: delivery
runs-on: ubuntu-latest
Expand Down

0 comments on commit 91d8da7

Please sign in to comment.