mirror of
https://github.com/Hestia-Homes/insight.git
synced 2026-06-08 11:17:25 +00:00
install everything first
This commit is contained in:
parent
e1b57a25c5
commit
af6664cec5
1 changed files with 6 additions and 3 deletions
9
.github/workflows/gather_hubspot_data.yml
vendored
9
.github/workflows/gather_hubspot_data.yml
vendored
|
|
@ -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
|
||||
"
|
||||
Loading…
Add table
Reference in a new issue