diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 1de9b46..863f0a4 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -51,8 +51,8 @@ jobs: uses: docker/login-action@v3 with: registry: liamsgit.dev - username: ${{ secrets.REGISTRY_USERNAME }} - password: ${{ secrets.REGISTRY_PASSWORD }} + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }} - name: Build and Push Docker Image to Registry uses: docker/build-push-action@v4 @@ -92,5 +92,5 @@ jobs: ansible-playbook infra/ansible/deploy-playbook.yml --private-key private.key --inventory hosts.ini env: APP_HOST: ${{ secrets.APP_HOST }} - REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }} - REGISTRY_PASSWORD: ${{ secrets.REGISTRY_PASSWORD }} \ No newline at end of file + REGISTRY_USERNAME: ${{ secrets.DOCKER_USERNAME }} + REGISTRY_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} \ No newline at end of file