Skip to content

Commit

Permalink
Update hardhat_e2e.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tyitang committed Dec 30, 2024
1 parent c72ee76 commit eecec6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/hardhat_e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ jobs:
echo $rpcurl
echo $chainid
result=$(forge create --rpc-url $rpcurl --optimize --optimizer-runs 30000 --legacy --force --json --private-key ${{ secrets.STORY_PRIVATEKEY }} test/foundry/mocks/token/MockERC721.sol:MockERC721 --constructor-args "MockERC" "MockERC" | grep deployedTo)
result=$(forge create --rpc-url $rpcurl --optimize --optimizer-runs 30000 --legacy --json --private-key ${{ secrets.STORY_PRIVATEKEY }} test/foundry/mocks/token/MockERC721.sol:MockERC721 --constructor-args "MockERC" "MockERC" 2>&1)
echo $result
erc721=$(echo $result | jq -r '.deployedTo')
erc721=$(echo $result | grep deployedTo | jq -r '.deployedTo')
echo $erc721
echo "STORY_URL=$rpcurl" >> .env
Expand Down

0 comments on commit eecec6c

Please sign in to comment.