From 4d8a9da695ac3cd25593b68ced66ad029fe79eb0 Mon Sep 17 00:00:00 2001 From: fleischsalatinspace Date: Thu, 16 Sep 2021 01:20:43 +0200 Subject: [PATCH] .github/workflows/docker-image.yml: add docker builds on push/pr/daily --- .github/workflows/docker-image.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/docker-image.yml diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml new file mode 100644 index 0000000..cd5d6bf --- /dev/null +++ b/.github/workflows/docker-image.yml @@ -0,0 +1,29 @@ +name: Docker Image CI + +on: + push: + branches: + - master + - dev + pull_request: + branches: + - master + - dev + # 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-containers:$(date +%s) +