diff --git a/.github/workflows/build_docker.yml b/.github/workflows/build_docker.yml index 76df5a1..7090544 100644 --- a/.github/workflows/build_docker.yml +++ b/.github/workflows/build_docker.yml @@ -21,7 +21,9 @@ jobs: id: meta uses: docker/metadata-action@v5 with: - images: ghcr.io/${{ github.repository }} + images: | + ghcr.io/${{ github.repository }} + aviortheking/codestats-skyline tags: | type=edge type=ref,event=pr @@ -32,6 +34,12 @@ jobs: type=semver,pattern=latest - name: Login to Docker Hub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USER }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + + - name: Login to Github Packages uses: docker/login-action@v3 with: registry: ghcr.io