Files
aklive2d/.github/workflows/update-offical-dyn-info.yaml
2024-05-03 11:48:07 +08:00

29 lines
598 B
YAML

name: Update Offical Dyn Info
on:
schedule:
- cron: '30 10 * * *'
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- name: Use PNPM
uses: pnpm/action-setup@v3
with:
version: latest
- name: Install dependencies
run: pnpm i
- name: Update offical dyn info
run: pnpm run offical_update
- name: Commit changes if any
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "chore(offical update): auto update"