Skip to content

Commit fe5a424

Browse files
Create create_release.yml
1 parent 752e0ad commit fe5a424

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/create_release.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: "Create Release"
2+
3+
on:
4+
push:
5+
tags:
6+
- "v*"
7+
8+
jobs:
9+
pre-release:
10+
name: "Create Release"
11+
runs-on: "ubuntu-latest"
12+
13+
steps:
14+
- uses: "marvinpinto/action-automatic-releases@latest"
15+
with:
16+
repo_token: "${{ secrets.GITHUB_TOKEN }}"
17+
prerelease: false
18+
files: |
19+
*

0 commit comments

Comments
 (0)