From d49c96b69fda4a58ed49914232ec09f70476de7e Mon Sep 17 00:00:00 2001 From: Antony Messerli Date: Tue, 4 Oct 2022 23:08:27 -0500 Subject: [PATCH] Add Docker Hub as as mirror --- .github/workflows/release.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1118dcb..d79cd76 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,6 +30,12 @@ jobs: - name: Set up QEMU uses: docker/setup-qemu-action@v2 + - name: Login to the Docker Container Registry + uses: docker/login-action@v2 + with: + username: ${{ secrets.DOCKERHUB_USER }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Login to the GitHub Container Registry uses: docker/login-action@v2 with: @@ -119,6 +125,9 @@ jobs: VERSION=${{ env.VERSION_TAG }} BUILD_DATE=${{ env.GITHUB_DATE }} tags: | + netbootxyz/netbootxyz:latest + netbootxyz/netbootxyz:${{ github.sha }} + netbootxyz/netbootxyz:${{ env.VERSION_TAG }} ghcr.io/netbootxyz/netbootxyz:latest ghcr.io/netbootxyz/netbootxyz:${{ github.sha }} ghcr.io/netbootxyz/netbootxyz:${{ env.VERSION_TAG }}