-
Notifications
You must be signed in to change notification settings - Fork 155
46 lines (39 loc) · 1.11 KB
/
sync.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
name: Sync app data
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch: {}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'yarn'
- name: Install dependencies & sync data
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
yarn install
yarn sync-data
- name: Commit & Push changes
run: |
git submodule init
git submodule update
git config user.name Probot Bot
git config user.email [email protected]
git add .
# do not error if there is nothing to commit
git commit -m "chore: Sync data" && git push || true
yarn sass
yarn build
# Prevent GitHub from trying to use Jekyll
touch _site/.nojekyll
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
publish_dir: ./_site
github_token: ${{ secrets.GITHUB_TOKEN }}