diff --git a/.github/workflows/ghcr-docker-image.yml b/.github/workflows/build-and-push-image.yml similarity index 70% rename from .github/workflows/ghcr-docker-image.yml rename to .github/workflows/build-and-push-image.yml index ba112ec..6a0d736 100644 --- a/.github/workflows/ghcr-docker-image.yml +++ b/.github/workflows/build-and-push-image.yml @@ -1,20 +1,22 @@ -name: Docker Image To GHCR +name: Build and Push Image to Dockerhub and GHCR on: push: branches: [ "main" ] jobs: - build: - runs-on: ubuntu-latest - steps: - name: Checkout uses: actions/checkout@v4 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 + - name: Login to DockerHub + uses: docker/login-action@v3 + with: + username: "${{ secrets.DH_USER }}" + password: "${{ secrets.DH_PASS }}" - name: Login to GitHub Container Registry uses: docker/login-action@v3 with: @@ -28,4 +30,6 @@ jobs: platforms: linux/amd64,linux/arm64 push: true tags: | + hargata/lubelogger:latest ghcr.io/hargata/lubelogger:latest + \ No newline at end of file diff --git a/.github/workflows/dockerhub-docker-image.yml b/.github/workflows/dockerhub-docker-image.yml deleted file mode 100644 index 114d380..0000000 --- a/.github/workflows/dockerhub-docker-image.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Docker Image To Docker Hub - -on: - push: - branches: [ "main" ] - -jobs: - - build: - - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - name: Login to DockerHub - uses: docker/login-action@v3 - with: - username: "${{ secrets.DH_USER }}" - password: "${{ secrets.DH_PASS }}" - - name: Build and push - uses: docker/build-push-action@v5 - with: - context: . - platforms: linux/amd64,linux/arm64 - push: true - tags: | - hargata/lubelogger:latest