From b0e2dc67f228815945abe5b3a86e30059dd3eb85 Mon Sep 17 00:00:00 2001 From: Diwank Singh Tomer Date: Wed, 17 Apr 2024 10:51:15 +0530 Subject: [PATCH] fix(.github): Touch .env Signed-off-by: Diwank Singh Tomer --- .github/workflows/push-to-hub.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/push-to-hub.yml b/.github/workflows/push-to-hub.yml index b03060e91..2cc4c0b0e 100644 --- a/.github/workflows/push-to-hub.yml +++ b/.github/workflows/push-to-hub.yml @@ -11,9 +11,9 @@ jobs: Build-Push-Images-To-Docker-Hub: runs-on: ubuntu-latest - strategy: - matrix: - directory: [agents-api, model-serving, gateway, memory-store] + # strategy: + # matrix: + # directory: [agents-api, model-serving, gateway, memory-store] steps: - uses: actions/checkout@v4 @@ -33,12 +33,14 @@ jobs: - name: Build images run: | - cd ${{ matrix.directory }} + # cd ${{ matrix.directory }} + touch .env docker compose build - name: Push images run: | - cd ${{ matrix.directory }} + # cd ${{ matrix.directory }} + touch .env docker compose push concurrency: