scarica bollettino ondata calore #1262
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: scarica bollettino ondata calore | |
on: | |
# push: | |
repository_dispatch: | |
schedule: | |
- cron: "3 0-7/2 * * *" | |
- cron: "3 8-11 * * *" | |
- cron: "3 11-23/2 * * *" | |
workflow_dispatch: | |
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 scrape e mlr | |
run: |- | |
mkdir -p ~/bin | |
cp bin/scrape ~/bin | |
cp bin/mlr ~/bin | |
cp bin/mlrgo ~/bin | |
cd ~/bin | |
chmod +x scrape | |
chmod +x mlr | |
chmod +x mlrgo | |
sudo pip install yq | |
- name: esegui lo script | |
run: |- | |
export PATH=$PATH:~/bin | |
cd ./ | |
chmod +x ./ondate-calore.sh | |
./ondate-calore.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 "aggiornamento bollettino: ${timestamp}" || exit 0 | |
git push |