Skip to content

Commit 9bfde9c

Browse files
committed
fix: rename CI job to build-and-test and update dependencies for Anvil deployment
1 parent 3d66d80 commit 9bfde9c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ on:
1818
jobs:
1919

2020
# Build and test before deploying.
21-
ci:
21+
build-and-test:
2222
uses: ./.github/workflows/main.yml
2323
with:
2424
SEPOLIA_RPC_URL: ${{ vars.SEPOLIA_RPC_URL }}
2525
ARBITRUM_SEPOLIA_RPC_URL: ${{ vars.ARBITRUM_SEPOLIA_RPC_URL }}
2626

2727
# Deploy and verify contract.
2828
deploy:
29-
needs: ci
29+
needs: build-and-test
3030
runs-on: ubuntu-latest
3131
permissions:
3232
contents: write # Required to commit deployment files.
@@ -46,7 +46,7 @@ jobs:
4646
if: inputs.network == 'anvil'
4747
env:
4848
CI: true
49-
PRIVATE_KEY: ${{ secrets.DEPLOYER_PRIVATE_KEY }}
49+
PRIVATE_KEY: ${{ vars.ANVIL_PRIVATE_KEY }}
5050
SEPOLIA_RPC_URL: ${{ vars.SEPOLIA_RPC_URL }}
5151
ARBITRUM_SEPOLIA_RPC_URL: ${{ vars.ARBITRUM_SEPOLIA_RPC_URL }}
5252
ANVIL_SEPOLIA_RPC_URL: ${{ vars.ANVIL_SEPOLIA_RPC_URL }}

0 commit comments

Comments
 (0)