23 lines
No EOL
509 B
YAML
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 |