Skip to content

Commit 9557a45

Browse files
committed
add github action release
1 parent 7655b7c commit 9557a45

1 file changed

Lines changed: 41 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: release
2+
on:
3+
push:
4+
tags:
5+
- '*'
6+
7+
jobs:
8+
build:
9+
permissions: write-all
10+
name: Create Release
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@v2
15+
- name: Create Release
16+
id: create_release
17+
uses: actions/create-release@v1
18+
env:
19+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20+
with:
21+
tag_name: ${{ github.ref }}
22+
release_name: FaceXlib ${{ github.ref }} Release Note
23+
body: |
24+
🚀 See you again 😸
25+
🚀Have a nice day 😸 and happy everyday 😃
26+
🚀 Long time no see ☄️
27+
28+
✨ **Highlights**
29+
✅ [Features] Support ...
30+
31+
🐛 **Bug Fixes**
32+
33+
🌴 **Improvements**
34+
35+
📢📢📢
36+
37+
<p align="center">
38+
<img src="https://raw.githubusercontent.com/xinntao/facexlib/master/assets/icon.png" height=150>
39+
</p>
40+
draft: true
41+
prerelease: false

0 commit comments

Comments
 (0)