Skip to content

Commit

Permalink
add install-libtinfo5 flag
Browse files Browse the repository at this point in the history
  • Loading branch information
claudiu725 committed Dec 9, 2022
1 parent 9cd6f24 commit 0db07d1
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/contracts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ on:
default: '--all-targets --all-features'
required: false
type: string
install-libtinfo5:
description: 'install libtinfo5'
default: false
required: false
type: boolean
secrets:
token:
description: 'Github token'
Expand Down Expand Up @@ -60,6 +65,12 @@ jobs:
cargo install twiggy
- name: Install libtinfo5
if: inputs.install-libtinfo5
run: |
sudo apt update
sudo apt install -y libtinfo5
- name: Build the wasm contracts
run: erdpy contract build -r ${{ inputs.extra-build-args }}

Expand Down

0 comments on commit 0db07d1

Please sign in to comment.