site-data/.forgejo/workflows/update.yml
Seven Of Aces 01b5f4ab80
Some checks failed
Update meta.json / update (push) Failing after 20s
meow
2025-01-15 19:56:01 -08:00

23 lines
No EOL
509 B
YAML

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