diff --git a/.github/workflows/continous-delivery.yml b/.github/workflows/continous-delivery.yml index d2ed7c2..92fa56c 100644 --- a/.github/workflows/continous-delivery.yml +++ b/.github/workflows/continous-delivery.yml @@ -3,9 +3,9 @@ name: "Continous Delivery Workflow" "on": workflow_call: secrets: - DOCKERHUB_USERNAME: + USERNAME: required: true - DOCKERHUB_PASSWORD: + PASSWORD: required: true env: @@ -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 diff --git a/.github/workflows/continous-deployment.yml b/.github/workflows/continous-deployment.yml index 73179dc..4b3008e 100644 --- a/.github/workflows/continous-deployment.yml +++ b/.github/workflows/continous-deployment.yml @@ -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