File tree 2 files changed +11
-2
lines changed
2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 23
23
release_name : Release ${{ steps.set_version.outputs.version }}
24
24
draft : false
25
25
prerelease : true
26
- - name : upload binary
27
- id : upload-release
26
+ - name : upload apiserver binary
28
27
29
28
env :
30
29
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
33
32
asset_path : ./bin/apiserver
34
33
asset_name : apiserver-${{ steps.set_version.outputs.version }}
35
34
asset_content_type : application/octet-stream
35
+ - name : upload gateway-agent binary
36
+
37
+ env :
38
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
39
+ with :
40
+ upload_url : ${{ steps.create_release.outputs.upload_url }}
41
+ asset_path : ./bin/gateway-agent
42
+ asset_name : gateway-agent-${{ steps.set_version.outputs.version }}
43
+ asset_content_type : application/octet-stream
Original file line number Diff line number Diff line change 7
7
8
8
linux :
9
9
GOOS=linux GOARCH=amd64 go build -o bin/apiserver cmd/apiserver/main.go
10
+ GOOS=linux GOARCH=amd64 go build -o bin/gateway-agent cmd/gateway-agent/main.go
10
11
11
12
local-apiserver :
12
13
go run ./cmd/apiserver/main.go --db-connection-uri=${DB_CONNECTION_URI} || echo " forget to export DB_CONNECTION_URL=<DSN> ?"
You can’t perform that action at this time.
0 commit comments