Set up automated releases with GitHub Actions

This commit is contained in:
Eric Cornelisesn 2020-04-24 14:54:23 +03:00
parent 233b2579e7
commit 073688160b

13
.github/workflows/release.yml vendored Normal file
View file

@ -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 }}"