-
Notifications
You must be signed in to change notification settings - Fork 0
104 lines (90 loc) · 3.19 KB
/
go.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
name: Go
on:
push:
branches: [master]
tags:
- "v*"
pull_request:
branches: [master]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.19
uses: actions/setup-go@v2
with:
go-version: ^1.19
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Test
run: go test -v ./...
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.19
uses: actions/setup-go@v2
with:
go-version: ^1.19
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3)
- name: Build
run: |
env GOOS=linux GOARCH=amd64 go build -o dist/grgd-linux-amd64-${{ steps.get_version.outputs.VERSION }} .
env GOOS=darwin GOARCH=amd64 go build -o dist/grgd-darwin-amd64-${{ steps.get_version.outputs.VERSION }} .
env GOOS=freebsd GOARCH=amd64 go build -o dist/grgd-freebsd-amd64-${{ steps.get_version.outputs.VERSION }} .
- name: Upload binary
uses: actions/upload-artifact@v2
with:
name: grgd-darwin-amd64-${{ steps.get_version.outputs.VERSION }}
path: dist/grgd-darwin-amd64-${{ steps.get_version.outputs.VERSION }}
- name: Upload binary
uses: actions/upload-artifact@v2
with:
name: grgd-linux-amd64-${{ steps.get_version.outputs.VERSION }}
path: dist/grgd-linux-amd64-${{ steps.get_version.outputs.VERSION }}
- name: Upload binary
uses: actions/upload-artifact@v2
with:
name: grgd-freebsd-amd64-${{ steps.get_version.outputs.VERSION }}
path: dist/grgd-freebsd-amd64-${{ steps.get_version.outputs.VERSION }}
# - name: Create Release
# id: create_release
# uses: actions/create-release@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# tag_name: ${{ github.ref }}
# release_name: Release ${{ github.ref }}
# draft: false
# prerelease: false
# - name: Upload Release Asset
# id: upload-release-asset
# uses: actions/upload-release-asset@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# upload_url: ${{ steps.create_release.outputs.upload_url }}
# asset_path: dist/grgd-darwin-amd64-${{ steps.get_version.outputs.VERSION }}
# asset_name: grgd-darwin-amd64-${{ steps.get_version.outputs.VERSION }}
# asset_content_type: application/zip