Skip to content

Commit

Permalink
Merge pull request #1292 from shirou/feature/add_release_action
Browse files Browse the repository at this point in the history
add a GitHub action to auto release
  • Loading branch information
shirou committed May 1, 2022
2 parents c9a292a + ea6bed8 commit 24a1ae5
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 24a1ae5

Please sign in to comment.