site-data/.forgejo/workflows/update.yml

23 lines
509 B
YAML
Raw Normal View History

2025-01-15 19:56:01 -08:00
name: Update meta.json
on: push
jobs:
update:
runs-on: docker
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Run Update script
run: apk add deno && deno install && deno task update
- name: Commit changes
run: |
git config --global user.name 'Automatic Updates'
git config --global user.email 'autoupdate@noreply.git.smgames.club'
git commit -am "Automated update"
git push