diff --git a/.github/workflows/ci_cd.yaml b/.github/workflows/ci_cd.yaml index 0b735b3..b465229 100644 --- a/.github/workflows/ci_cd.yaml +++ b/.github/workflows/ci_cd.yaml @@ -63,7 +63,7 @@ jobs: - name: Download data inputs run: make download env: - POLICYENGINE_US_DATA_GITHUB_TOKEN: ${{ secrets.POLICYENGINE_US_DATA_GITHUB_TOKEN }} + POLICYENGINE_US_DATA_GITHUB_TOKEN: ${{ secrets.POLICYENGINE_UK_DATA_GITHUB_TOKEN }} - name: Build datasets run: make data - name: Run tests diff --git a/Makefile b/Makefile index 73cbf52..2bac527 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,3 @@ -.PHONY: all format test install download upload docker documentation data clean build - all: data test format: @@ -12,10 +10,10 @@ install: pip install -e ".[dev]" download: - python policyengine_us_data/data_storage/download_private_prerequisites.py + python policyengine_usk_data/data_storage/download_private_prerequisites.py upload: - python policyengine_us_data/data_storage/upload_completed_datasets.py + python policyengine_uk_data/data_storage/upload_completed_datasets.py docker: docker buildx build --platform linux/amd64 . -t policyengine-uk-data:latest