From 00ed3caafec31943ad07d1c2ae2e6bc095e481f7 Mon Sep 17 00:00:00 2001 From: Ben Date: Wed, 21 Aug 2024 15:19:11 +0200 Subject: [PATCH] Sets up CI for building marketinsights api --- .github/workflows/docker-marketinsights.yml | 27 +++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/docker-marketinsights.yml diff --git a/.github/workflows/docker-marketinsights.yml b/.github/workflows/docker-marketinsights.yml new file mode 100644 index 0000000..d4017cc --- /dev/null +++ b/.github/workflows/docker-marketinsights.yml @@ -0,0 +1,27 @@ +name: Docker - MarketInsights API + + +on: + push: + branches: + - master + tags: + - 'v*.*.*' + paths: + - 'Tools/MarketInsights/**' + - 'Framework/**' + - 'ProjectPlugins/**' + - .github/workflows/docker-marketinsights.yml + - .github/workflows/docker-reusable.yml + workflow_dispatch: + + +jobs: + build-and-push: + name: Build and Push + uses: ./.github/workflows/docker-reusable.yml + with: + docker_file: Tools/MarketInsights/Dockerfile + docker_repo: codexstorage/codex-marketinsights + secrets: inherit +