-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (52 loc) · 1.36 KB
/
main.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
# 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@v5
- name: Build with Jekyll
uses: actions/jekyll-build-pages@v1
with:
source: ./docs
destination: ./_site
- name: Upload artifact
uses: actions/upload-pages-artifact@v3