Skip to content

Commit

Permalink
Small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ifropc committed Dec 14, 2024
1 parent 8ddb1e6 commit ef44032
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/bindings-ts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ jobs:
if: runner.os != 'windows'
shell: bash
- run: |
docker inspect -f {{.State.Health.Status}} quickstart
until [ "`docker inspect -f {{.State.Health.Status}} quickstart`"=="healthy" ]; do
sleep 0.1;
done;
Expand All @@ -103,7 +104,7 @@ jobs:
npm ci --ignore-scripts
cargo run --quiet -p stellar-cli -- keys generate root
cargo run --quiet -p stellar-cli -- keys fund root
$contract_id=(cargo run --quiet -p stellar-cli -- contract deploy --quiet --source root --wasm ../../../../target/wasm32-unknown-unknown/test-wasms/test_custom_types.wasm --ignore-check)
$contract_id=(cargo run --quiet -p stellar-cli -- contract deploy --quiet --source root --wasm ../../../../target/wasm32-unknown-unknown/test-wasms/test_custom_types.wasm --ignore-checks)
cargo run --quiet -p stellar-cli -- contract bindings typescript --contract-id $contract_id --output-dir ./node_modules/test-custom-types --overwrite
cd ./node_modules/test-custom-types
npm install
Expand Down

0 comments on commit ef44032

Please sign in to comment.