From 83d71dd6299273dcff3c4288fdd0dcb628b7eb6c Mon Sep 17 00:00:00 2001 From: Michael Dockter Date: Mon, 3 Feb 2025 16:09:35 -0500 Subject: [PATCH] #168 Delete .github/workflows/docker-push-containers-to-dockerhub.yaml (#169) --- .../docker-push-containers-to-dockerhub.yaml | 24 ------------------- 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/docker-push-containers-to-dockerhub.yaml diff --git a/.github/workflows/docker-push-containers-to-dockerhub.yaml b/.github/workflows/docker-push-containers-to-dockerhub.yaml deleted file mode 100644 index 6e49eb6..0000000 --- a/.github/workflows/docker-push-containers-to-dockerhub.yaml +++ /dev/null @@ -1,24 +0,0 @@ -name: docker push containers to dockerhub - -on: - push: - tags: - - "[0-9]+.[0-9]+.[0-9]+" - -permissions: - contents: read - -jobs: - docker-push-containers-to-dockerhub: - runs-on: ubuntu-latest - - steps: - - name: build docker image and push to DockerHub - uses: senzing-factory/github-action-docker-buildx-build@v1 - with: - build-options: "--push" - image-repository: senzing/senzing-base - image-tag: ${{ github.ref_name }} - password: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }} - platforms: "linux/amd64,linux/arm64" - username: ${{ secrets.DOCKERHUB_USERNAME }}