Skip to content

Generate and upload kepler gl map #190

Generate and upload kepler gl map

Generate and upload kepler gl map #190

Workflow file for this run

name: Generate and upload kepler gl map
on:
push:
schedule:
- cron: '0 0 1 * *'
env:
GCP_SA_KEY: ${{ secrets.PESKAS_DATAINGESTION_GCS_KEY }}
jobs:
build-container:
name: Build R container
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Build image with cache
id: build-docker
uses: whoan/docker-build-with-cache-action@v5
with:
username: $GITHUB_ACTOR
password: "${{ secrets.GITHUB_TOKEN }}"
registry: docker.pkg.github.com
image_name: r-runner-peskas-timor
dockerfile: Dockerfile.prod
kepler-map:
name: Generate kepler map
needs: [build-container]
runs-on: ubuntu-20.04
container:
image: docker.pkg.github.com/worldfishcenter/peskas.timor.data.pipeline/r-runner-peskas-timor
credentials:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Set env to production
if: endsWith(github.ref, '/main')
run: echo "R_CONFIG_ACTIVE=production" >> $GITHUB_ENV
- name: Install Python and required modules
run: |
apt-get update
apt-get install -y python3 python3-pip
python3 -m pip install pandas keplergl
- name: Generate and upload kepler map
run: Rscript -e 'peskas.timor.data.pipeline::ingest_kepler_tracks()'