dorfylegends/.github/workflows/build.yml

43 lines
1.1 KiB
YAML
Raw Normal View History

2022-05-08 22:26:24 +03:00
name: Build LegendsBrowser
2022-05-08 22:24:33 +03:00
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
- name: Build MacOS
2022-05-08 22:35:03 +03:00
run: cd backend && GOOS=darwin GOARCH=amd64 go build -o ../bin/legendsbrowser-mac-intel
2022-05-08 22:24:33 +03:00
- name: Build Linux
2022-05-08 22:26:24 +03:00
run: cd backend && GOOS=linux GOARCH=amd64 go build -o ../bin/legendsbrowser-linux-x64
2022-05-08 22:24:33 +03:00
- name: Build Windows
run: cd backend && GOOS=windows GOARCH=amd64 go build -o ../bin/legendsbrowser-win-x64.exe
2022-05-08 22:29:14 +03:00
2022-05-08 22:35:03 +03:00
- name: Upload MacOS Artifact
2022-05-08 22:29:14 +03:00
uses: actions/upload-artifact@v3
with:
2022-05-08 22:35:03 +03:00
name: mac-os
path: bin/legendsbrowser-mac-intel
- name: Upload Linux Artifact
uses: actions/upload-artifact@v3
with:
name: linux
path: bin/legendsbrowser-linux-x64
- name: Upload MacOS Artifact
uses: actions/upload-artifact@v3
with:
name: windows
path: bin/legendsbrowser-win-x64.exe