From 02b1f9f386b919ad2d71891ba4f315fd36d12ce4 Mon Sep 17 00:00:00 2001 From: "Emmanuel Joseph (JET)" Date: Thu, 10 Oct 2024 18:53:14 +0100 Subject: [PATCH] ci: env variables [fix] --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4888178..a462ca8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,8 +65,8 @@ jobs: forge create src/MultiSigEnterpriseVault.sol:MultiSigEnterpriseVault \ --chain pulsechain-testnet \ - --rpc-url $PULSECHAIN_TESTNET_RPC_URL \ - --constructor-args $OWNER_ADDRESS $INITIAL_THRESHOLD $INITIAL_MULTISIG_TIMELOCK $INITIAL_OWNEROVEREIDE_TIMELOCK \ + --rpc-url ${{ vars.PULSECHAIN_TESTNET_RPC_URL }} \ + --constructor-args ${{ vars.OWNER_ADDRESS }} ${{ vars.INITIAL_THRESHOLD }} ${{ vars.INITIAL_MULTISIG_TIMELOCK }} ${{ vars.INITIAL_OWNEROVEREIDE_TIMELOCK }} \ --private-key ${{ secrets.PRIVATE_KEY }} --verify --verifier blockscout --verifier-url https://api.scan.v4.testnet.pulsechain.com/api/ | tee dist/deployment_result.txt - name: Save Deployment ABI