Skip to content

Commit

Permalink
try more
Browse files Browse the repository at this point in the history
  • Loading branch information
BillyWooo committed Sep 27, 2024
1 parent 17bf53d commit 68dc250
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions parachain/scripts/generate-release-notes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,14 @@ is_bitacross_worker_release() {
}

cd "$ROOTDIR/parachain"

path
ls
docker images
if is_client_release; then
# base image used to build the node binary
NODE_BUILD_BASE_IMAGE=$(grep FROM docker/Dockerfile | head -n1 | sed 's/^FROM //;s/ as.*//')

docker images
echo "========= inside if"
# somehow `docker inspect` doesn't pull our litentry-parachain image sometimes
docker pull "$NODE_BUILD_BASE_IMAGE"
docker pull "litentry/litentry-parachain:$PARACHAIN_DOCKER_TAG"
Expand All @@ -63,6 +65,8 @@ if is_client_release; then
fi
fi

echo "========= outside if"

SUBSTRATE_DEP=$(grep 'frame-system' ./Cargo.toml | head -n1 | sed 's/.*branch = "//;s/".*//')
FRONTIER_DEP=$(grep 'fc-api' ./Cargo.toml | head -n1 | sed 's/.*branch = "//;s/".*//')

Expand Down

0 comments on commit 68dc250

Please sign in to comment.