Skip to content

Commit

Permalink
Merge pull request #6 from compound-finance/hayesgm/v0.0.2
Browse files Browse the repository at this point in the history
 Sleuth Release v0.0.2
  • Loading branch information
hayesgm authored Apr 4, 2024
2 parents 59644b5 + 1ae9b4b commit 5401e91
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ jobs:
- name: Prepare Release
run: |
export RPC_URL=$(echo $deployer_config | jq ".$network.rpc_url")
export CODE_JAR=$(echo $deployer_config | jq ".$network.code_jar")
export RPC_URL=$(echo $deployer_config | jq -r ".$network.rpc_url")
export CODE_JAR=$(echo $deployer_config | jq -r ".$network.code_jar")
script/prepare-release.sh
env:
deployer_config: ${{ secrets.deployer_config }}
Expand Down
2 changes: 1 addition & 1 deletion script/prepare-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ if [ -z "$body" ]; then
exit 1
fi

sleuth_address="$(forge script --rpc-url="$RPC_URL" --json --silent script/Sleuth.s.sol:Prepare | tee | jq -r '.returns."0".value')"
sleuth_address="$(forge script --rpc-url=$RPC_URL --json --silent script/Sleuth.s.sol:Prepare | tee | jq -r '.returns."0".value')"

echo "title=$title"
echo "body=$body"
Expand Down

0 comments on commit 5401e91

Please sign in to comment.