From 676540ed36c2fc396b0d2fa5410dfd920cbe9bcb Mon Sep 17 00:00:00 2001
From: Jan Wijffels <jwijffels@bnosac.be>
Date: Wed, 22 May 2024 15:26:12 +0200
Subject: [PATCH] remove pushing to dockerhub

---
 .github/workflows/build.yml | 15 ---------------
 1 file changed, 15 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 1ce4d5a..2eea285 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -26,12 +26,6 @@ jobs:
       - name: Set up Docker Buildx
         uses: docker/setup-buildx-action@v2
 
-      - name: Login to DockerHub
-        uses: docker/login-action@v2
-        with:
-          username: ${{ secrets.DOCKERHUB_USERNAME }}
-          password: ${{ secrets.DOCKERHUB_TOKEN }}
-
       - name: Login to GHCR (GitHub Packages)
         uses: docker/login-action@v2
         with:
@@ -46,12 +40,3 @@ jobs:
           push: true
           tags: "ghcr.io/bnosac/${{ matrix.config.tag }}:latest"            
           file: ${{ matrix.config.dockerfile }}
-
-      - name: Build and push Dockerhub
-        uses: docker/build-push-action@v5
-        with:
-          context: ${{ matrix.config.context }}
-          push: true
-          tags: "bnosac/${{ matrix.config.tag }}:latest"            
-          file: ${{ matrix.config.dockerfile }}
-