Skip to content

Update API

Update API #32265

Workflow file for this run

name: Update API
on:
schedule:
- cron: 0 * * * *
permissions:
contents: write
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dart-lang/setup-dart@v1.4
- name: Install dependencies
run: dart pub get
- name: Build
run: mkdir build && dart run >> build/api.json
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.8.0
with:
branch: gh-pages # The branch the action should deploy to.
folder: build