From f4a96581c5aeafe3f5bed3a76de72b3ded9c250f Mon Sep 17 00:00:00 2001 From: Nitish Tiwari Date: Thu, 4 Aug 2022 16:42:53 +0530 Subject: [PATCH] disable docker ci workflow for now --- .github/workflows/build.yaml | 52 ++++++++++++++++++------------------ 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index e2800f59c..71776590b 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -10,32 +10,32 @@ on: name: Continuous Integration jobs: - docker: - name: Docker Build & Push - runs-on: ubuntu-latest - steps: - - name: Docker meta - id: meta - uses: docker/metadata-action@v4 - with: - images: | - parseable/parseable - tags: | - type=sha - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - - 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: Build and push - uses: docker/build-push-action@v3 - with: - push: true - tags: ${{ steps.meta.outputs.tags }} + # docker: + # name: Docker Build & Push + # runs-on: ubuntu-latest + # steps: + # - name: Docker meta + # id: meta + # uses: docker/metadata-action@v4 + # with: + # images: | + # parseable/parseable + # tags: | + # type=sha + # - name: Set up QEMU + # uses: docker/setup-qemu-action@v2 + # - 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: Build and push + # uses: docker/build-push-action@v3 + # with: + # push: true + # tags: ${{ steps.meta.outputs.tags }} test: name: Test Suite