Skip to content

Commit

Permalink
Fix ci cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
anilcse committed Nov 11, 2024
1 parent 320c266 commit 2aaed07
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/Basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ jobs:
- name: Compile WASM contract
uses: actions-rs/cargo@v1
with:
command: build --release --target wasm32-unknown-unknown
command: build
args: --release --target wasm32-unknown-unknown
env:
RUSTFLAGS: "-C link-arg=-s"

Expand Down Expand Up @@ -58,8 +59,8 @@ jobs:
- name: Generate Schema
uses: actions-rs/cargo@v1
with:
command: run --example schema
args: --locked
command: run
args: --example schema

- name: Schema Changes
# fails if any changes not committed
Expand Down

0 comments on commit 2aaed07

Please sign in to comment.