site-data/.forgejo/workflows/update.yml
Seven Of Aces 0ea6157ea1
All checks were successful
Update meta.json / update (push) Successful in 24s
changed url
2025-01-15 20:26:27 -08:00

28 lines
No EOL
618 B
YAML

name: Update meta.json
on: push
jobs:
update:
runs-on: docker
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Setup Deno
uses: https://github.com/denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Run Update script
run: 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