Skip to content
This repository was archived by the owner on Mar 19, 2021. It is now read-only.

Commit 8d5aa40

Browse files
committed
release test2
1 parent 4ba0a70 commit 8d5aa40

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed

.github/workflows/release.yml

+1-8
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,5 @@ jobs:
4444
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4545
with:
4646
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
47-
asset_path: |
48-
./Robot_Monitor_Web_linux.zip
49-
./Robot_Monitor_Web_mac.zip
50-
./Robot_Monitor_Web_windows.zip
51-
asset_name: |
52-
Robot_Monitor_Web_linux.zip
53-
Robot_Monitor_Web_mac.zip
54-
Robot_Monitor_Web_windows.zip
47+
asset_path: ./*.zip
5548
asset_content_type: application/zip

build.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ go get github.com/go-bindata/go-bindata/...
88
go get github.com/elazarl/go-bindata-assetfs/...
99
go-bindata -fs -prefix "WebPageBuild/" WebPageBuild/
1010
go-bindata-assetfs WebPageBuild/...
11-
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -v -o Robot_Monitor_Web_linux
12-
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -v -o Robot_Monitor_Web_mac
13-
CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -v -o Robot_Monitor_Web_windows.exe
11+
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o Robot_Monitor_Web_linux
12+
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -o Robot_Monitor_Web_mac
13+
CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -o Robot_Monitor_Web_windows.exe
1414
zip Robot_Monitor_Web_linux.zip Robot_Monitor_Web_linux
1515
zip Robot_Monitor_Web_mac.zip Robot_Monitor_Web_mac
1616
zip Robot_Monitor_Web_windows.zip Robot_Monitor_Web_windows.exe

0 commit comments

Comments
 (0)