From af6664cec57c85324af867ee91f03b727a40c82f Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Mon, 17 Nov 2025 19:12:23 +0000 Subject: [PATCH] install everything first --- .github/workflows/gather_hubspot_data.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/gather_hubspot_data.yml b/.github/workflows/gather_hubspot_data.yml index dd42c88..d0254d6 100644 --- a/.github/workflows/gather_hubspot_data.yml +++ b/.github/workflows/gather_hubspot_data.yml @@ -19,11 +19,14 @@ jobs: run: | docker build -f .devcontainer/Dockerfile -t latest-image . - # Run the script inside the container - - name: Run script in container + # Install dependencies + run script inside container + - name: Poetry install & run script run: | docker run \ -v ${{ github.workspace }}:/workspaces/insight \ -w /workspaces/insight/backend \ latest-image \ - poetry run python src/dashboard/src/scripts/hubspot_to_s3.py + bash -c " + poetry install && + poetry run python src/dashboard/scripts/hubspot_to_s3.py + " \ No newline at end of file