Generate Pages #64865
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
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 |