diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d4a4999..2c7a43d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -37,12 +37,12 @@ jobs: run: | pytest tests/ - - name: Login to GitHub Container Registry + - name: Login to DockerHub uses: docker/login-action@v3 with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Extract branch name shell: bash @@ -53,4 +53,4 @@ jobs: with: context: . push: true - tags: ghcr.io/${{ github.repository_owner }}/downscaled-climate-data:${{ env.BRANCH_NAME }} \ No newline at end of file + tags: ncsa/downscaled-climate-data:${{ env.BRANCH_NAME }}