Skip to content

estrai lista file PDF sorveglianza integrata #2070

estrai lista file PDF sorveglianza integrata

estrai lista file PDF sorveglianza integrata #2070

name: estrai lista file PDF sorveglianza integrata
on:
# push:
repository_dispatch:
schedule:
- cron: '15 2 */1 * *'
jobs:
scheduled:
runs-on: ubuntu-latest
steps:
- name: Utilizza l'action github checkout@v2, per automatizzare il check-out
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: crea cartella utente bin, copia dentro l'eseguibile di miller e scrape, installa yq
run: |-
mkdir -p ~/bin
cp bin/mlr ~/bin
cd ~/bin
chmod +x mlr
- name: scarica i dati
run: |-
export PATH=$PATH:~/bin
cd ./catalogo/sorveglianzaIntegrata/script
chmod +x ./sorveglianzaIntegrata.sh
./sorveglianzaIntegrata.sh
- name: Committa e pusha se ci sono variazioni nei dati
run: |-
git config user.name "automatico"
git config user.email "actions@users.noreply.github.com"
git add -A
timestamp=$(date --iso-8601=seconds)
git commit -m "Data e ora aggiornamento: ${timestamp}" || exit 0
git push