.github: upload binaries for Build workflows
This commit is contained in:
parent
3dbc9bb5dc
commit
b602c9d3a0
1 changed files with 14 additions and 0 deletions
14
.github/workflows/build.yml
vendored
14
.github/workflows/build.yml
vendored
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue