Generate schedules and commit changes #786
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
# Simple workflow for deploying static content to GitHub Pages | |
name: Generate schedules and commit changes | |
on: | |
schedule: | |
- cron: '45 2 */1 * *' | |
workflow_dispatch: | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
contents: write | |
pages: write | |
id-token: write | |
# Allow one concurrent deployment | |
concurrency: | |
group: "pages" | |
cancel-in-progress: true | |
jobs: | |
get_schedules: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
node-version: 20 | |
- run: npm install | |
- run: npm run build | |
- uses: EndBug/add-and-commit@v9 | |
with: | |
message: 'Update schedules' | |
add: '*' | |
remove: '' | |
cwd: 'docs/data/' | |
pull: '--rebase --autostash' | |
author_name: 'github-actions[bot]' | |
author_email: '[email protected]' | |
# Build job | |
build: | |
runs-on: ubuntu-latest | |
needs: get_schedules | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Pages | |
uses: actions/configure-pages@v4 | |
- name: Build with Jekyll | |
uses: actions/jekyll-build-pages@v1 | |
with: | |
source: ./docs | |
destination: ./_site | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v1 |