Files
aklive2d/.github/workflows/update-charwords.yaml
2023-06-25 03:25:45 -04:00

28 lines
564 B
YAML

name: Update charwords
on:
schedule:
- cron: '0 0 * * *'
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- name: Use PNPM
uses: pnpm/action-setup@v2
with:
version: latest
- name: Install dependencies
run: pnpm i
- name: Build all
run: pnpm run charwords
- name: Commit changes if any
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "chore(charwords): auto update"