Skip to content

Commit f028b9c

Browse files
committed
Add github workflow.
1 parent 739eddc commit f028b9c

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+
---
2+
name: "Tagged Release"
3+
4+
on:
5+
push:
6+
tags:
7+
- "v*"
8+
9+
jobs:
10+
tagged-release:
11+
name: "Tagged Release"
12+
runs-on: "ubuntu-latest"
13+
14+
steps:
15+
- uses: "marvinpinto/[email protected]"
16+
with:
17+
repo_token: "${{ secrets.GITHUB_TOKEN }}"
18+
prerelease: false

0 commit comments

Comments
 (0)