Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Prev Previous commit
Next Next commit
make separate wasm dir for artifacts
  • Loading branch information
s3krit committed May 13, 2020
commit c3361934634a9f6073517818d356a83674a4c110
6 changes: 3 additions & 3 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,11 +174,11 @@ build-wasm-release:
script:
- cargo install wasm-pack
- time wasm-pack build --target web --out-dir wasm --release cli -- --no-default-features --features browser
- mkdir -p ./artifacts
- mkdir -p ./artifacts/wasm
- cd ./cli/wasm/
- for f in polkadot_cli*; do sha256sum "${f}" > "${f}.sha256"; done
- mv ./polkadot_cli* ../../artifacts/.
- find ../../artifacts/
- mv ./polkadot_cli* ../../artifacts/wasm/.
- cd ../../

build-linux-release: &build
stage: build
Expand Down