mirror of
https://github.com/redis/go-redis.git
synced 2025-07-29 17:41:15 +03:00
Automate release process (#1852)
This commit is contained in:
committed by
GitHub
parent
fd3025bfed
commit
5e89d627dd
15
.github/workflows/release.yml
vendored
Normal file
15
.github/workflows/release.yml
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
name: release
|
||||
|
||||
on: push
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: Release
|
||||
uses: softprops/action-gh-release@v1
|
||||
if: startsWith(github.ref, 'refs/tags/')
|
||||
with:
|
||||
body: Check CHANGELOG.md for details
|
Reference in New Issue
Block a user