site-data/.forgejo/workflows/update.yml
Seven Of Aces 190a100935
Some checks failed
Update meta.json / update (push) Failing after 30s
Changed APK to APT
2025-01-15 20:18:57 -08:00

23 lines
No EOL
516 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: apt install deno -A && 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