Skip to content

Commit

Permalink
Sleuth Release
Browse files Browse the repository at this point in the history
This is the v0.0.1 release of Sleuth, which adds official support for revert messages.
  • Loading branch information
hayesgm committed Apr 3, 2024
1 parent 59644b5 commit 1ae9b4b
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 1ae9b4b

Please sign in to comment.