Skip to content

Merge pull request #15 from desmondlsl/update-github-workflows #882

Merge pull request #15 from desmondlsl/update-github-workflows

Merge pull request #15 from desmondlsl/update-github-workflows #882

Workflow file for this run

name: Data Fetching
on:
push:
schedule:
- cron: "5 19 * * *"
workflow_dispatch:
jobs:
Fetch-Route-Data:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v6
- name: Setup Python environment
uses: actions/setup-python@v6
with:
python-version: '3.12'
architecture: 'x64'
- name: Crawling resources
run: python waypoints.py # pfaedle runs from its official Docker image (preinstalled on the runner)
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages # The branch the action should deploy to.
folder: waypoints # The folder the action should deploy.
single-commit: true