Merge pull request #1292 from shirou/feature/add_release_action

add a GitHub action to auto release
tags/v3.22.4 v3.22.4
shirou 3 years ago committed by GitHub
commit 24a1ae54b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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
Loading…
Cancel
Save