From 26dab4e9a20be8d1e8ce0ba567495fd5e19fbd97 Mon Sep 17 00:00:00 2001 From: Rennan Rocha Date: Tue, 23 Jul 2024 08:03:17 -0300 Subject: [PATCH] ci: migrate to dockerhub (#629) --- .github/workflows/publish.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 56333046f..f307c3756 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -18,13 +18,12 @@ jobs: - name: Login to DockerHub uses: docker/login-action@v1 with: - registry: quay.io - username: ${{ secrets.QUAYIO_USERNAME }} - password: ${{ secrets.QUAYIO_TOKEN }} + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build and push uses: docker/build-push-action@v2 with: context: ./ file: ./Dockerfile push: true - tags: quay.io/tfgco/maestro:${{ env.IMAGE_VERSION }} \ No newline at end of file + tags: tfgco/maestro:${{ env.IMAGE_VERSION }} \ No newline at end of file