Skip to content

Commit

Permalink
Remove env vars in ci (#67)
Browse files Browse the repository at this point in the history
* Remove secrets with hardcoded values
  • Loading branch information
alexkeating authored Sep 25, 2023
1 parent b6af8d4 commit 67abc20
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ on:

env:
FOUNDRY_PROFILE: ci
POLYGON_MUMBAI_RPC_URL: ${{ secrets.MUMBAI_RPC_URL }}
AVALANCHE_FUJI_RPC_URL: ${{ secrets.FUJI_RPC_URL }}
POLYGON_MUMBAI_RPC_URL: ${{ secrets.POLYGON_MUMBAI_RPC_URL }}
AVALANCHE_FUJI_RPC_URL: ${{ secrets.AVALANCHE_FUJI_RPC_URL }}
OPTIMISM_RPC_URL: ${{ secrets.OPTIMISM_RPC_URL }}
MAINNET_RPC_URL: ${{ secrets.MAINNET_RPC_URL }}
L1_CHAIN_ID: ${{ secrets.L1_CHAIN_ID }}
L2_CHAIN_ID: ${{ secrets.L2_CHAIN_ID }}
TESTNET: ${{ secrets.TESTNET }}
L1_CHAIN_ID: 43113
L2_CHAIN_ID: 80001
TESTNET: true

jobs:
build:
Expand Down

0 comments on commit 67abc20

Please sign in to comment.