Fix CI
Some checks failed
CI / Frontend (lint + typecheck) (push) Failing after 2m45s
CI / Python (lint + test) (push) Failing after 4m6s
CI / Rust (lint + test) (push) Successful in 4m6s
Build and publish Docker image / build-and-push (push) Failing after 4m52s

This commit is contained in:
Andras Schmelczer 2026-03-24 22:30:53 +00:00
parent 1dfa0e0009
commit c4423b6c9a

View file

@ -26,6 +26,13 @@ jobs:
- name: Download arcgis data for finder - name: Download arcgis data for finder
run: uv run python -m pipeline.download.arcgis --output property-data/arcgis_data.parquet run: uv run python -m pipeline.download.arcgis --output property-data/arcgis_data.parquet
- name: Install Docker CLI
run: |
ARCH=$(uname -m)
curl -fsSL "https://download.docker.com/linux/static/stable/${ARCH}/docker-27.5.1.tgz" \
| tar xz --strip-components=1 -C /usr/local/bin docker/docker
docker --version
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: https://github.com/docker/setup-buildx-action@v3 uses: https://github.com/docker/setup-buildx-action@v3