From a5e517fa6e76afc5f816f485dcc8e3140b0c23c8 Mon Sep 17 00:00:00 2001 From: Zach Wolfenbarger Date: Tue, 19 Sep 2023 20:08:02 -0500 Subject: [PATCH] Add Docker build/push workflow --- .github/workflows/build_image.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/build_image.yml diff --git a/.github/workflows/build_image.yml b/.github/workflows/build_image.yml new file mode 100644 index 0000000..4b75ba4 --- /dev/null +++ b/.github/workflows/build_image.yml @@ -0,0 +1,16 @@ +name: Build & Push Image + +on: + push: + branches: + - main + workflow_dispatch: + +jobs: + build_and_push_image: + name: Build and Push Image + uses: zooniverse/ci-cd/.github/workflows/build_and_push_image.yaml@main + with: + repo_name: listmonk-sync + commit_id: ${{ github.sha }} + latest: true