-
Notifications
You must be signed in to change notification settings - Fork 11
51 lines (43 loc) · 1.15 KB
/
generate-pages.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
name: Generate Pages
env:
CI: true
FORCE_COLOR: true
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: "15 * * * *"
jobs:
lqty-supply:
name: Generate API files
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
with:
submodules: true
- name: Setup Node.js & Yarn
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
env:
# Workaround for https://github.com/actions/setup-node/issues/317
FORCE_COLOR: 0
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Fetch API data
run: yarn once
env:
ALCHEMY_API_KEY: ${{ secrets.ALCHEMY_API_KEY }}
TRANSPOSE_API_KEY: ${{ secrets.TRANSPOSE_API_KEY }}
- name: Commit generated files
uses: EndBug/add-and-commit@v9
if: ${{ github.event_name != 'pull_request' }}
with:
message: "chore: update generated files"
default_author: github_actions
add: docs
push: --force origin HEAD:pages