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 a2501ae commit 886779d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/hardhat_e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

strategy:
matrix:
node-version: [20.0.0]
node-version: [21.x]

steps:
- name: Check Out Repository Code
Expand Down Expand Up @@ -82,7 +82,8 @@ jobs:
echo $rpcurl
echo $chainid
erc721=$(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" | jq '.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")
erc721=$(echo $result | jq -r '.deployedTo')
echo $erc721
echo "STORY_URL=$rpcurl" >> .env
Expand Down

0 comments on commit 886779d

Please sign in to comment.