From e6c0a1fa1262038b92983ade3fd0b6a49f5c6da6 Mon Sep 17 00:00:00 2001 From: docktermj Date: Mon, 3 Feb 2025 15:28:40 -0500 Subject: [PATCH] #150 Delete .github/workflows/docker-push-containers-to-dockerhub.yaml --- .../docker-push-containers-to-dockerhub.yaml | 29 ------------------- 1 file changed, 29 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 36b5122..0000000 --- a/.github/workflows/docker-push-containers-to-dockerhub.yaml +++ /dev/null @@ -1,29 +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: get repo name - id: repo-basename - run: | - echo "repo=$(basename ${{ github.repository }})" >> "$GITHUB_OUTPUT" - shell: bash - - - name: build docker image and push to DockerHub - uses: senzing-factory/github-action-docker-buildx-build@v1 - with: - build-options: "--push" - image-repository: senzing/${{ steps.repo-basename.outputs.repo }} - image-tag: ${{ github.ref_name }} - password: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }} - username: ${{ secrets.DOCKERHUB_USERNAME }}