diff --git a/.github/workflows/create-release-draft.yml b/.github/workflows/create-release-draft.yml index 5ae086dc7a..8f50ab45e7 100644 --- a/.github/workflows/create-release-draft.yml +++ b/.github/workflows/create-release-draft.yml @@ -393,4 +393,6 @@ jobs: files: | *-parachain-runtime/*-parachain-srtool-digest.json *-parachain-runtime/*-parachain-runtime.compact.compressed.wasm - litentry-collator/* + litentry-collator/litentry-collator + litentry-collator/*-genesis-state + litentry-collator/*-genesis-wasm diff --git a/parachain/scripts/generate-release-notes.sh b/parachain/scripts/generate-release-notes.sh index 284201416b..9dbebe5b26 100755 --- a/parachain/scripts/generate-release-notes.sh +++ b/parachain/scripts/generate-release-notes.sh @@ -53,7 +53,8 @@ if is_client_release; then NODE_VERSION=$(grep version node/Cargo.toml | head -n1 | sed "s/'$//;s/.*'//") NODE_BIN=litentry-collator - NODE_SHA1SUM=$(shasum litentry-collator/"$NODE_BIN" | awk '{print $1}') + # if is_client_release, files are downloaded in the upper layer + NODE_SHA1SUM=$(shasum ../litentry-collator/"$NODE_BIN" | awk '{print $1}') if [ -f rust-toolchain.toml ]; then NODE_RUSTC_VERSION=$(rustc --version) else