File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1212 GO_VERSION : ' 1.25.1'
1313
1414jobs :
15- release :
16- name : Release
15+ create-release :
16+ name : Create Release
17+ runs-on : ubuntu-latest
18+ steps :
19+ - name : Checkout code
20+ uses : actions/checkout@v4
21+
22+ # TODO: add changelog generation
23+ - name : Generate Changelog
24+ run : echo "# Changelog" > ${{ github.workspace }}-CHANGELOG.txt
25+
26+ - name : Create Release with Notes
27+ uses : softprops/action-gh-release@v1
28+ with :
29+ body_path : ${{ github.workspace }}-CHANGELOG.txt
30+
31+ upload-binaries :
32+ name : Upload Binaries
1733 runs-on : ubuntu-latest
1834 strategy :
1935 matrix :
2642 - name : Checkout code
2743 uses : actions/checkout@v4
2844
29- - name : Create Release with Notes
30- uses : softprops/action-gh-release@v1
31-
3245 - name : Go Release Binaries
3346 uses : wangyoucao577/go-release-action@v1
3447 with :
You can’t perform that action at this time.
0 commit comments