From 91d8da798fe6afe65690f29ed3bcf3ae263bf3fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miko=C5=82aj=20M=C5=82odzikowski?= Date: Wed, 27 Jul 2022 18:42:30 +0200 Subject: [PATCH] fix? --- .github/workflows/continous-delivery.yml | 8 ++++---- .github/workflows/continous-deployment.yml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) 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