Skip to content

Commit

Permalink
add a GitHub action to auto release
Browse files Browse the repository at this point in the history
  • Loading branch information
shirou committed Apr 29, 2022
1 parent c9a292a commit ea6bed8
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/release.yml
@@ -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

0 comments on commit ea6bed8

Please sign in to comment.