Skip to content

Commit

Permalink
fix the last path error (#3103)
Browse files Browse the repository at this point in the history
* fix the last path error

* only release selected files
  • Loading branch information
BillyWooo authored Sep 27, 2024
1 parent 539af4e commit ef0b2df
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/create-release-draft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
3 changes: 2 additions & 1 deletion parachain/scripts/generate-release-notes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ef0b2df

Please sign in to comment.