j40-cejst-2/.github/workflows/deploy_data.yml

60 lines
2 KiB
YAML
Raw Normal View History

2021-08-06 10:36:51 -04:00
name: Deploy Data
on: [push, pull_request]
# push:
# paths:
# - 'data/data-pipeline/'
# pull_request:
# paths:
# - 'data/data-pipeline/'
jobs:
deploy_data:
runs-on: ubuntu-latest
defaults:
run:
working-directory: data/data-pipeline
2021-08-06 10:36:51 -04:00
strategy:
matrix:
python-version: [3.9]
steps:
2021-08-06 15:45:17 -04:00
- name: Checkout source
uses: actions/checkout@v2
- name: Print variables to help debug
uses: hmarr/debug-action@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Setup Poetry
2021-08-06 15:38:59 -04:00
uses: Gr1N/setup-poetry@v7
2021-08-06 15:41:00 -04:00
- name: Print poetry version
run: poetry --version
- name: Install dependencies
run: poetry install
2021-08-06 15:54:40 -04:00
- name: Install GDAL/ogr2ogr
run: |
sudo apt-add-repository ppa:ubuntugis/ubuntugis-unstable
sudo apt-get update
sudo apt-get install gdal-bin libgdal-dev
pip install GDAL==3.2.3
2021-08-06 15:30:37 -04:00
- name: Run Scripts
run: |
poetry run download_census
2021-08-06 17:25:49 -04:00
poetry run etl_and_score
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.DATA_DEV_AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.DATA_DEV_AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1
- name: Deploy to Geoplatform AWS
run: |
aws s3 sync ./data_pipeline/data/ s3://justice40-data/data-pipeline/data --delete
- name: Update PR with Comment about deployment
uses: mshick/add-pr-comment@v1
with:
message: |
Data Synced! Find it here: s3://justice40-data/data-pipeline/data/
repo-token: ${{ secrets.GITHUB_TOKEN }}
repo-token-user-login: 'github-actions[bot]' # The user.login for temporary GitHub tokens
allow-repeats: false # This is the default