.github: upload binaries for Build workflows

This commit is contained in:
Anna Shaleva 2021-12-03 11:41:15 +03:00
parent 3dbc9bb5dc
commit b602c9d3a0

View file

@ -40,6 +40,13 @@ jobs:
- name: Build CLI
run: make build
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: neo-go-binaries-ubuntu
path: ./bin/neo-go
if-no-files-found: error
build_cli_wsc:
name: Build CLI (Windows Server Core)
runs-on: windows-2022
@ -66,6 +73,13 @@ jobs:
- name: Build CLI
run: make build
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: neo-go-binaries-wsc
path: ./bin/neo-go.exe
if-no-files-found: error
build_image_ubuntu:
needs: build_cli_ubuntu
name: Build Docker image (Ubuntu)