File tree Expand file tree Collapse file tree 2 files changed +39
-0
lines changed
Expand file tree Collapse file tree 2 files changed +39
-0
lines changed Original file line number Diff line number Diff line change 1+ changelog :
2+ categories :
3+ - title : New Features
4+ labels :
5+ - enhancement
6+ - title : Bug Fixes
7+ labels :
8+ - bug
9+ - title : Other Changes
10+ labels :
11+ - " *"
Original file line number Diff line number Diff line change 1+ name : Release
2+
3+ on :
4+ push :
5+ tags :
6+ - " v*"
7+
8+ permissions :
9+ contents : write
10+
11+ jobs :
12+ release :
13+ if : github.server_url == 'https://github.com'
14+ runs-on : ubuntu-latest
15+ steps :
16+ - uses : actions/checkout@v4
17+
18+ - uses : actions/setup-go@v5
19+ with :
20+ go-version-file : go.mod
21+
22+ - name : Run tests
23+ run : go test -race ./...
24+
25+ - name : Create GitHub Release
26+ env :
27+ GH_TOKEN : ${{ github.token }}
28+ run : gh release create ${{ github.ref_name }} --generate-notes --verify-tag
You can’t perform that action at this time.
0 commit comments