Merge pull request #1292 from shirou/feature/add_release_action

add a GitHub action to auto release
This commit is contained in:
shirou 2022-05-01 10:57:14 +09:00 committed by GitHub
commit 24a1ae54b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 0 deletions

12
.github/workflows/release.yml vendored Normal file
View File

@ -0,0 +1,12 @@
on:
schedule:
- cron: '0 1 1 * *' # UTC 01:00 on the first day of the Month
name: Release
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Release
run: make release