fix github action
This commit is contained in:
parent
ce85493f97
commit
0a3b967047
|
@ -1,4 +1,4 @@
|
||||||
name: Go
|
name: Build LegendsBrowser
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
@ -21,6 +21,6 @@ jobs:
|
||||||
- name: Build MacOS
|
- name: Build MacOS
|
||||||
run: cd backend && GOOS=darwin GOARCH=amd64 go build -o ../bin/legendsbrowser-mac
|
run: cd backend && GOOS=darwin GOARCH=amd64 go build -o ../bin/legendsbrowser-mac
|
||||||
- name: Build Linux
|
- name: Build Linux
|
||||||
run: GOOS=linux GOARCH=amd64 go build -o ../bin/legendsbrowser-linux-x64
|
run: cd backend && GOOS=linux GOARCH=amd64 go build -o ../bin/legendsbrowser-linux-x64
|
||||||
- name: Build Windows
|
- name: Build Windows
|
||||||
run: cd backend && GOOS=windows GOARCH=amd64 go build -o ../bin/legendsbrowser-win-x64.exe
|
run: cd backend && GOOS=windows GOARCH=amd64 go build -o ../bin/legendsbrowser-win-x64.exe
|
Loading…
Reference in New Issue