diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 00000000..854a651b --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,13 @@ +name: "Automated releases" +on: + schedule: + # "At 00:00 on Sunday" (https://crontab.guru/once-a-week) + - cron: "0 0 * * 0" + +jobs: + release: + runs-on: ubuntu-latest + steps: + - uses: simple-icons/release-action@master + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}"