File tree Expand file tree Collapse file tree 1 file changed +4
-18
lines changed Expand file tree Collapse file tree 1 file changed +4
-18
lines changed Original file line number Diff line number Diff line change 11# This is a basic workflow to help you get started with Actions
22
3- name : build
3+ name : Build Go binaries
44
55# Controls when the action will run. Triggers the workflow on push or pull request
66# events but only for the master branch
2222 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
2323 - name : Checkout code
2424 uses : actions/checkout@v2
25- release :
26- runs-on : ubuntu-latest
27- steps :
28- - name : Create Release
29- id : create_release
30- uses : actions/create-release@v1
31- env :
32- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
33- with :
34- tag_name : ${{ github.ref }}
35- release_name : Release ${{ github.ref }}
36- body : |
37- Changes in this Release
38- - First Change
39- - Second Change
40- draft : false
41- prerelease : false
25+
26+ - name : Make binaries
27+ uses : sosedoff/actions/golang-build@master
You can’t perform that action at this time.
0 commit comments