Skip to content

Commit

Permalink
Merge pull request #16 from 0chain/fix/binary-cicd
Browse files Browse the repository at this point in the history
Fix/binary cicd
  • Loading branch information
shahnawaz-creator authored Jun 14, 2023
2 parents 3ac5309 + e811f37 commit 8eb1916
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build-keygencli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ jobs:
with:
go-version: '1.18' # The Go version to download (if necessary) and use.

- name: Install deps
run: |
sudo apt update
sudo apt -y install build-essential nghttp2 libnghttp2-dev libssl-dev make
- name: Checkout
uses: actions/checkout@v2

Expand All @@ -36,10 +41,10 @@ jobs:
fi
- name: Install
run: make install
run: make build

- name: Zip release
run: tar -czvf keygen-linux.tar.gz ./keygen
run: tar -czvf keygen-linux.tar.gz ./bin/keygen

- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
Expand Down

0 comments on commit 8eb1916

Please sign in to comment.