Skip to content

Commit

Permalink
ci: expose env vars in the ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
robinstraub committed Jul 25, 2023
1 parent 429390d commit 7c58e05
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ on:

env:
BEERUS_VERSION: "ci"
# ETHEREUM_NETWORK: "mainnet"
ETHEREUM_NETWORK: "mainnet"
# ETHEREUM_CONSENSUS_RPC_URL: "https://www.lightclientdata.org"
# ETHEREUM_EXECUTION_RPC_URL: "https://eth-mainnet.g.alchemy.com/v2/spl1o-SnCzLfKdNt-_-BxQ0lsJmR3FLU"
# STARKNET_RPC_URL: "https://starknet-mainnet.infura.io/v3/a77771c7226a447bada27e682ae743bd"
STARKNET_RPC_URL: "https://starknet-mainnet.infura.io/v3/a77771c7226a447bada27e682ae743bd"
ETHEREUM_CHECKPOINT: "0x6994337840845b922cfd8d90a9f283e936f77a61eceb41b0e4b083ac5269e37a"
ETHEREUM_NETWORK: ${{ secrets.ETHEREUM_NETWORK }}
# ETHEREUM_NETWORK: ${{ secrets.ETHEREUM_NETWORK }}
ETHEREUM_CONSENSUS_RPC_URL: ${{ secrets.ETHEREUM_CONSENSUS_RPC_URL }}
ETHEREUM_EXECUTION_RPC_URL: ${{ secrets.ETHEREUM_EXECUTION_RPC_URL }}
STARKNET_RPC_URL: ${{ secrets.STARKNET_RPC_URL }}
# STARKNET_RPC_URL: ${{ secrets.STARKNET_RPC_URL }}

jobs:
build:
Expand Down

0 comments on commit 7c58e05

Please sign in to comment.