CRON: build and deploy #679
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: "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 |