From 50a6b3304fe46a62ae7793fe6fb025c8a7243c80 Mon Sep 17 00:00:00 2001 From: soneill Date: Thu, 16 Sep 2021 18:26:58 +1200 Subject: [PATCH] removes docker-build --- .github/workflows/docker-image.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/docker-image.yml diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml deleted file mode 100644 index 544c4263..00000000 --- a/.github/workflows/docker-image.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Docker Image CI - -on: - push: - branches: - - master - pull_request: - branches: - - master - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - schedule: - - cron: "0 4 * * 0-6" - -jobs: - - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - with: - submodules: 'recursive' - - name: Build the Docker image - run: docker build . --file Dockerfile --tag goryn-pathfinder:$(date +%s) -