-
Notifications
You must be signed in to change notification settings - Fork 7
78 lines (65 loc) · 2.17 KB
/
cron.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
name: "CRON: build and deploy"
on:
push:
schedule:
- cron: "30 14 * * *"
jobs:
build-and-deploy:
env:
DATA_FOLDER: build
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: '3.7'
- name: Cache node modules
uses: actions/cache@v1
env:
cache-name: cache-node-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install dependencies
run: npm install
- name: Test OpenAPI 3 specifications
run: npx openapi validate openapi.yml
- name: Creation destination folder
run: mkdir -p $DATA_FOLDER/jours-feries
- name: Prepare data
run: |
wget https://github.com/etalab/jours-feries-france-data/archive/master.zip
unzip master.zip
- name: Test API specifications
run: |
nohup python3 -m http.server 8888 --directory jours-feries-france-data-master/data/json &
sleep 2
npx dredd openapi.yml http://localhost:8888
- name: Copy HTML documentation
run: |
cp landing.html $DATA_FOLDER/index.html
cp index.html $DATA_FOLDER/jours-feries
- name: Copy OpenAPI file
run: |
cp openapi.yml $DATA_FOLDER/jours-feries
- name: Copy JSON files
run: |
cp -r jours-feries-france-data-master/data/json/. $DATA_FOLDER/jours-feries/
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/master'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ${{ env.DATA_FOLDER }}
user_name: 'actions-user'
user_email: '[email protected]'
force_orphan: true
cname: calendrier.api.gouv.fr