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