Skip to content

Commit

Permalink
ci: env variables [fix]
Browse files Browse the repository at this point in the history
  • Loading branch information
Emmanuel Joseph (JET) committed Oct 10, 2024
1 parent 3c4ef4c commit 02b1f9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 02b1f9f

Please sign in to comment.