mirror of
https://github.com/fluencelabs/examples
synced 2025-04-01 23:51:05 +00:00
* init reorg * updated readme * fix CI * remove outdated ipfs-node example * add Readme * update readme, add config file Co-authored-by: folex <0xdxdy@gmail.com>
7 lines
176 B
Bash
Executable File
7 lines
176 B
Bash
Executable File
#!/usr/bin/env bash -o errexit -o nounset -o pipefail
|
|
|
|
mkdir -p artifacts
|
|
rm -f artifacts/*.wasm
|
|
marine build --release
|
|
cp target/wasm32-wasi/release/ts_oracle.wasm artifacts/
|