From 963d5a7d5899ac2b3295a4dc64d6b64b39898b0b Mon Sep 17 00:00:00 2001 From: Swanny Date: Mon, 10 Jun 2024 10:33:09 -0400 Subject: [PATCH] fix(cd): deployer-address should be a var not an input (#44) --- .github/workflows/cd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index e506381..5b71cd0 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -54,9 +54,9 @@ jobs: forge-deployment-params: "17001 0x11Aa4EBFbf7a481617c719a2Df028c9DA1a219aa 0x29403F107781ea45Bf93710abf8df13F67f2008f" etherscan-url: https://holesky.etherscan.io chain-id: 17000 - deployer-address: ${{ inputs.HOLESKY_DEPLOYER_ADDRESS }} + deployer-address: ${{ vars.HOLESKY_DEPLOYER_ADDRESS }} secrets: aws-deployer-role: ${{ secrets.AWS_DEPLOYER_ROLE }} kms-key-id: ${{ secrets.HOLESKY_DEPLOYER_KEY_ID }} rpc-url: ${{ secrets.HOLESKY_RPC_URL }} - etherscan-api-key: ${{ secrets.ETHERSCAN_API_KEY }} \ No newline at end of file + etherscan-api-key: ${{ secrets.ETHERSCAN_API_KEY }}