From 088cd76bc22f0f3f6f6de739a45e3fe8f9a52b09 Mon Sep 17 00:00:00 2001 From: Angira Kekteeva Date: Fri, 21 May 2021 18:48:32 +0300 Subject: [PATCH] [#51] *: Temporarily disable some jobs of workflow Because building and publishing of docker images are not working now. Signed-off-by: Angira Kekteeva --- .github/workflows/builds.yml | 3 +++ ...lish_to_dockerhub.yml => publish_to_dockerhub.yml.disabled} | 2 ++ 2 files changed, 5 insertions(+) rename .github/workflows/{publish_to_dockerhub.yml => publish_to_dockerhub.yml.disabled} (95%) diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index 9532af8..398f3d9 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -42,11 +42,14 @@ jobs: name: neofs-http-gw path: bin/neofs-http-gw +# This job was made being skipped because building of a docker image is not working at this moment build_image: needs: build_cli name: Build Docker image runs-on: ubuntu-20.04 + if: ${{ false }} # remove this line when building of docker image will work + steps: - uses: actions/checkout@v2 with: diff --git a/.github/workflows/publish_to_dockerhub.yml b/.github/workflows/publish_to_dockerhub.yml.disabled similarity index 95% rename from .github/workflows/publish_to_dockerhub.yml rename to .github/workflows/publish_to_dockerhub.yml.disabled index 7a66b76..3ce59d7 100644 --- a/.github/workflows/publish_to_dockerhub.yml +++ b/.github/workflows/publish_to_dockerhub.yml.disabled @@ -1,3 +1,5 @@ +# Jobs in this file are disabled because building of a docker image is not working +# Remove .disabled extension to enable it name: Push images to DockerHub # Controls when the action will run.