From b16007034dceffbd705c08394ddc4db0a1f2dc96 Mon Sep 17 00:00:00 2001 From: Andre Kurait Date: Fri, 21 Jun 2024 15:35:07 -0500 Subject: [PATCH] add fetch migration docker build to ci/cd Signed-off-by: Andre Kurait --- .github/workflows/CI.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index afc3209d51..823ebb5a3e 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -173,6 +173,16 @@ jobs: env: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} + fetch-migration-docker-build: + runs-on: ubuntu-latest + defaults: + run: + working-directory: ./FetchMigration + steps: + - uses: actions/checkout@v4 + - name: Build Docker Image + run: docker build -t migrations/fetch-migration -f Dockerfile . + all-ci-checks-pass: needs: - cdk-tests @@ -181,7 +191,9 @@ jobs: - python-e2e-tests - python-lint - python-tests + - fetch-migration-docker-build runs-on: ubuntu-latest steps: - run: | echo '## :heavy_check_mark: All continous integration checks pass' >> $GITHUB_STEP_SUMMARY +