Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/release-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ jobs:
cargo install --git https://github.com/chevdor/srtool-cli
cargo install --locked --git https://github.com/chevdor/subwasm --tag v0.16.1

- name: Set env
run: |
echo "RELEASE_VERSION=$(git tag --sort=committerdate | grep -E '^v[0-9]' | tail -1 )" >> $GITHUB_ENV
make version

- name: Runtime wasm builds
id: runtime_release
env:
Expand Down
2 changes: 1 addition & 1 deletion .maintain/run_simnode.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ run_simnode() {
GS_BUCKET="$CHAIN-data-store"
sudo gsutil cp gs://$GS_BUCKET/"$FILENAME" .
sudo unzip -o "$FILENAME" -d /tmp/db
./target/release/simnode --chain="$CHAIN" --base-path=/tmp/db/ --pruning=archive --execution=wasm
./target/release/simnode --chain="$CHAIN" --base-path=/tmp/db/var/lib/composable-data/ --pruning=archive --execution=wasm
}

# shellcheck disable=SC2039
Expand Down