Skip to content

Commit 24a1ae5

Browse files
authored
Merge pull request #1292 from shirou/feature/add_release_action
add a GitHub action to auto release
2 parents c9a292a + ea6bed8 commit 24a1ae5

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/release.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
on:
2+
schedule:
3+
- cron: '0 1 1 * *' # UTC 01:00 on the first day of the Month
4+
5+
name: Release
6+
jobs:
7+
release:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- name: Release
12+
run: make release

0 commit comments

Comments
 (0)