From a0092c07700d9fe5e5a29412631a74d18e243e18 Mon Sep 17 00:00:00 2001
From: Lex Berezhny <lex@damoti.com>
Date: Wed, 21 Jul 2021 12:14:49 -0400
Subject: [PATCH] remove docker steps from github action build

---
 .github/workflows/main.yml | 25 -------------------------
 1 file changed, 25 deletions(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index d51268ff7..07273648e 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -139,31 +139,6 @@ jobs:
           name: lbrynet-${{ steps.os-name.outputs.lowercase }}
           path: dist/
 
-  docker:
-    name: "build / docker"
-    if: startsWith(github.ref, 'refs/tags/v')
-    needs: ["build"]
-    runs-on: ubuntu-latest
-    steps:
-      - uses: actions/checkout@v1
-      - uses: actions/download-artifact@v2
-        with:
-          name: lbrynet-linux
-      - run: |
-          chmod +x lbrynet
-          mv lbrynet docker
-      - name: build and push docker image
-        uses: docker/build-push-action@v1
-        with:
-          username: ${{ secrets.DOCKER_USERNAME }}
-          password: ${{ secrets.DOCKER_PASSWORD }}
-          repository: lbry/lbrynet
-          path: docker
-          dockerfile: docker/Dockerfile.wallet_server
-          tag_with_ref: true
-          tag_with_sha: true
-          add_git_labels: true
-
   release:
     name: "release"
     if: startsWith(github.ref, 'refs/tags/v')