We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f55897 commit f4b1d2aCopy full SHA for f4b1d2a
.github/workflows/release.yaml
@@ -0,0 +1,21 @@
1
+name: release
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ paths:
8
+ - 'RELEASE'
9
10
+jobs:
11
+ gh-release:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v3
15
+ with:
16
+ fetch-depth: 0
17
+ - run: |
18
+ gh release create "$(cat RELEASE | sed -r 's/^version: (.+)$/\1/')" --generate-notes
19
+ env:
20
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21
+ ISSUE: ${{ github.event.issue.html_url }}
.go-version
@@ -0,0 +1 @@
+1.18.2
RELEASE
+version: v0.0.1
0 commit comments