Skip to content

Actualiza_productos_de_ISCI #129

Actualiza_productos_de_ISCI

Actualiza_productos_de_ISCI #129

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Actualiza_productos_de_ISCI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
schedule:
- cron: '0 20 * * 1'
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
Actualiza_productos_de_ISCI:
env:
PROD51_URL: https://matiascerda.carto.com/api/v2/sql?format=CSV&filename=datos-movilidad-isci.csv&q=select%20*%20from%20data_variacion
PROD82_URL_1: https://nodejs.isci.cl/api/visor-movilidad/week
PROD82_URL_2: https://nodejs.isci.cl/api/visor-movilidad/weekend
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# Sets up python
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.7
# Runs a set of commands using the runners shell
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: generate products from ISCI
run: |
cd src
python ISCI.py &&\
python tweet.py ${{ secrets.TWITTER_API_KEY }} ${{ secrets.TWITTER_API_SECRET }} \
${{ secrets.TWITTER_ACCESS_TOKEN }} ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }} \
isci
- uses: stefanzweifel/[email protected]
with:
commit_message: "Added data from ISCI to repo"
# Optional glob pattern of files which should be added to the commit
file_pattern: output/*/*.csv
# Optional local file path to the repository
repository: .
# Optional commit user and author settings
commit_user_name: MinCiencia GitHub Actions Bot
commit_user_email: [email protected]
commit_author: minciencia github bot <[email protected]>
- name: update_API
run: |
curl -u "${{ secrets.DO_INT_USER }}:${{ secrets.DO_INT_PASS }}" \
-H 'Accept: application/vnd.github.everest-preview+json' "https://api.github.com/repos/Data-Observatory/covid19-API/dispatches" \
-d '{"event_type": "update_please_from_ISCI"}'