-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (40 loc) · 1.22 KB
/
disegniLegge.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: crea feed RSS assemblea regionale siciiana
on:
# push:
repository_dispatch:
schedule:
- cron: '5 7,11,13,17 * * *'
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 xmlstarlet, gooodtables e yq
run: |-
mkdir -p ~/bin
cp bin/mlr ~/bin
cp bin/scrape ~/bin
cd ~/bin
chmod +x mlr
chmod +x scrape
sudo apt-get install xmlstarlet
sudo pip install yq
# sudo pip install goodtables
- name: scarica i dati e crea feed
env:
SUPER_SECRET: ${{ secrets.IFTTT }}
run: |-
export PATH=$PATH:~/bin
chmod +x ./disegniARS.sh
./disegniARS.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