We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebabcc8 commit cd100e1Copy full SHA for cd100e1
.circleci/config.yml
@@ -42,7 +42,12 @@ jobs:
42
- attach_workspace:
43
at: ./ui/dist
44
- run: go get -v -t -d ./...
45
- - run: ./release.sh
+ - run:
46
+ working_directory: cmd/ssl-game-controller
47
+ command: |
48
+ GOOS=linux GOARCH=amd64 packr build -o ../../release/linux/ssl-game-controller
49
+ GOOS=windows GOARCH=amd64 packr build -o ../../release/windows/ssl-game-controller.exe
50
+ GOOS=darwin GOARCH=amd64 packr build -o ../../release/darwin/ssl-game-controller
51
- run: ll release && tree release
52
53
0 commit comments