diff --git a/.github/workflows/update-repo.yml b/.github/workflows/update-repo.yml new file mode 100644 index 0000000..53d67b2 --- /dev/null +++ b/.github/workflows/update-repo.yml @@ -0,0 +1,25 @@ +name: Update Repo + +on: + release: + types: [published] + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + + permissions: + contents: write + + steps: + - name: Checkout Repo + uses: actions/checkout@v4.1.6 + + - name: Run Update Script + run: ./updateRepo + + - name: Push Changes + uses: stefanzweifel/git-auto-commit-action@v5.0.1 + with: + commit_message: "update: repo" diff --git a/repo.json b/repo.json new file mode 100644 index 0000000..fd3bc61 --- /dev/null +++ b/repo.json @@ -0,0 +1,6 @@ +{ + "name": "EeveeSpotify", + "identifier": "com.eevee.source", + "subtitle": "EeveeSpotify official source", + "apps": [] +} \ No newline at end of file diff --git a/updateRepo b/updateRepo new file mode 100755 index 0000000..736a512 Binary files /dev/null and b/updateRepo differ