Skip to content

update_maplibre

update_maplibre #144

name: update_maplibre
on:
workflow_dispatch:
schedule:
- cron: "0 22 * * *" # https://crontab.guru/
jobs:
build:
runs-on: ubuntu-latest
env:
MAPTILER_KEY: ${{ secrets.MAPTILER_KEY }}
MAPTILER_KEY_PUBLIC: ${{ secrets.MAPTILER_KEY_PUBLIC }}
steps:
- name: checkout repo content
uses: actions/checkout@v4
- name: setup python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: install python packages
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: execute python script
run: |
python update_maplibre.py
- name: file_check
run: ls -l -a
- name: commit files
continue-on-error: true
run: |
today=$(date +"%Y-%m-%d")
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add -A
git commit -m "Updated MapLibre maps ${today} UTC" -a
git pull origin master
- name: push changes
continue-on-error: true
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: master
# Deploy the book's HTML to gh-pages branch
- name: GitHub Pages action
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./