Skip to content

Commit

Permalink
ci: print generated .env.local
Browse files Browse the repository at this point in the history
  • Loading branch information
danielattilasimon committed Apr 12, 2024
1 parent abdb0e0 commit 0bcce1d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/testnet-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ jobs:
echo 'NEXT_PUBLIC_CHAIN_CONTRACT_MULTICALL=0xffB2BAa708261533b51D18394fd8AFd0E32aBC55|488' >> $APP_ENV_FILE
pnpm tsx utils/deployment-artifacts-to-app-env.ts $DEPLOYMENT_CONTEXT_FILE $APP_ENV_FILE --append
cat $APP_ENV_FILE
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
Expand Down

1 comment on commit 0bcce1d

@bpierre
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Output:

NEXT_PUBLIC_CHAIN_ID=1337
NEXT_PUBLIC_CHAIN_NAME=Liquity Testnet
NEXT_PUBLIC_CHAIN_CURRENCY=Ether|ETH|18
NEXT_PUBLIC_CHAIN_RPC_URL=https://testnet.liquity.org/rpc
NEXT_PUBLIC_CHAIN_BLOCK_EXPLORER=https://testnet.liquity.org/
NEXT_PUBLIC_CHAIN_CONTRACT_MULTICALL=0xffB2BAa708261533b51D18394fd8AFd0E32aBC55|488

NEXT_PUBLIC_CHAIN_ID=1337
NEXT_PUBLIC_CONTRACT_ACTIVE_POOL=0x3f8c2a444ab18c8e3dd4f2dab29f627a01e6d628
NEXT_PUBLIC_CONTRACT_BOLD_TOKEN=0x23614cdb96ddc4d78a4588a8cf4e5f6189aeec01
NEXT_PUBLIC_CONTRACT_BORROWER_OPERATIONS=0x0017bdf76c95791a7c7a8c9de176827aed1c8412
NEXT_PUBLIC_CONTRACT_COLL_SURPLUS_POOL=0x3209cc052e4454829292507120f17428c1de9ca7
NEXT_PUBLIC_CONTRACT_DEFAULT_POOL=0x1927971acdc8b18ec1f44338cb7db614752669ac
NEXT_PUBLIC_CONTRACT_FUNCTION_CALLER=0x0000000000000000000000000000000000000000
NEXT_PUBLIC_CONTRACT_GAS_POOL=0x62496721f9a93ba7366304cc8a4e878be24d4de1
NEXT_PUBLIC_CONTRACT_HINT_HELPERS=0x0000000000000000000000000000000000000000
NEXT_PUBLIC_CONTRACT_PRICE_FEED_TESTNET=0xbd240ca7f9f3518ffc82d93d28b6d4c5262c3a87
NEXT_PUBLIC_CONTRACT_SORTED_TROVES=0x34a6286d3a05a42ca0a78835e95d0135c4555831
NEXT_PUBLIC_CONTRACT_STABILITY_POOL=0xe86a892614fa5ebd5c376dce0a8d5fbacf3c8dac
NEXT_PUBLIC_CONTRACT_TROVE_MANAGER=0xeab49feaac90fb08923fa6286ce0eff46c629975

This PR removes the CHAIN_ID duplication: #115

Please sign in to comment.