Skip to content

Extract PA files

Extract PA files #1087

name: Extract PA files
on:
schedule:
- cron: '0 23 * * *'
# push:
# branches:
# - main
workflow_dispatch:
jobs:
scheduled:
runs-on: ubuntu-latest
steps:
- name: Utilizza l'action github checkout@v3, per automatizzare il check-out
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: crea cartella utente bin, copia dentro l'eseguibile scrape e mlr
run: |-
mkdir -p ~/bin
cp bin/mlrgo ~/bin
cd ~/bin
chmod +x mlrgo
- name: esegui lo script base
run: |-
export PATH=$PATH:~/bin
cd ./referendum_iniziative_popolare/script
chmod +x ./referendum_iniziative_popolare.sh
./referendum_iniziative_popolare.sh
- name: Committa e pusha se ci sono variazioni nei dati
run: |-
git config user.name "automatico"
git config user.email "[email protected]"
git add -A
timestamp=$(date --iso-8601=seconds)
git commit -m "aggiornamento dati referendum: ${timestamp}" || exit 0
git push