Skip to content

Commit 9c15acf

Browse files
committed
added release creation
1 parent 2a81ee6 commit 9c15acf

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
@@ -5,6 +5,24 @@ on:
55
- 'v[0-9]+.[0-9]+.[0-9]+'
66

77
jobs:
8+
create-release:
9+
runs-on: ubuntu-latest
10+
permissions:
11+
contents: write
12+
steps:
13+
- name: Create GitHub Release
14+
id: create_release
15+
uses: actions/create-release@v1
16+
with:
17+
tag_name: ${{ github.ref_name }}
18+
release_name: ${{ github.ref_name }}
19+
body: |
20+
Release created automatically for tag ${{ github.ref_name }}.
21+
draft: false
22+
prerelease: false
23+
env:
24+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25+
826
releases-matrix:
927
permissions: write-all
1028
name: Release Go Binary

0 commit comments

Comments
 (0)