Skip to content

Commit 339b0da

Browse files
committed
ci: added release gh action
1 parent 1be6558 commit 339b0da

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/release.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Publish Release
2+
3+
on:
4+
push:
5+
tags:
6+
- '*'
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@master
13+
- name: Create a Release
14+
uses: elgohr/Github-Release-Action@master
15+
env:
16+
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
17+
with:
18+
args: MyReleaseMessage

0 commit comments

Comments
 (0)