From d95f93d0c8a60f7fc7c69205a8f857e71626e4f2 Mon Sep 17 00:00:00 2001 From: Brett <54408245+kowh-ai@users.noreply.github.com> Date: Mon, 10 May 2021 16:12:06 +0200 Subject: [PATCH] create github action --- .github/workflows/build.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..57add28 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,11 @@ +name: Build CKAN Docker +on: [push, pull_request] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: docker nginx build + - run: | + docker build ./nginx -t kowhai/ckan-docker-nginx:testing-only + \ No newline at end of file