upload separate artifacts
This commit is contained in:
parent
91be7a5c00
commit
aed21a1e95
|
@ -19,15 +19,25 @@ jobs:
|
||||||
go-version: 1.18
|
go-version: 1.18
|
||||||
|
|
||||||
- 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-intel
|
||||||
- name: Build Linux
|
- name: Build Linux
|
||||||
run: cd backend && 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
|
||||||
|
|
||||||
- name: Upload Artifacts
|
- name: Upload MacOS Artifact
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: dist-without-markdown
|
name: mac-os
|
||||||
path: |
|
path: bin/legendsbrowser-mac-intel
|
||||||
bin
|
- 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
|
||||||
|
|
Loading…
Reference in New Issue