diff --git a/.github/workflows/release-pipeline.yml b/.github/workflows/release-pipeline.yml index 0880763e3d3..e803295a45d 100644 --- a/.github/workflows/release-pipeline.yml +++ b/.github/workflows/release-pipeline.yml @@ -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: diff --git a/.maintain/run_simnode.sh b/.maintain/run_simnode.sh index a26fbf5a037..9aecc18c9d2 100755 --- a/.maintain/run_simnode.sh +++ b/.maintain/run_simnode.sh @@ -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