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 fce835e commit 3c4ef4c
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 @@ -62,18 +62,18 @@ jobs:
- name: Deploy MultiSigEnterpriseVault Contract
run: |
mkdir -p dist
forge create src/MultiSigEnterpriseVault.sol:MultiSigEnterpriseVault \
--chain pulsechain-testnet \
--rpc-url ${{ env.PULSECHAIN_TESTNET_RPC_URL }} \
--constructor-args ${{ env.OWNER_ADDRESS }} ${{ env.INITIAL_THRESHOLD }} ${{ env.INITIAL_MULTISIG_TIMELOCK }} ${{ env.INITIAL_OWNEROVEREIDE_TIMELOCK }} \
--rpc-url $PULSECHAIN_TESTNET_RPC_URL \
--constructor-args $OWNER_ADDRESS $INITIAL_THRESHOLD $INITIAL_MULTISIG_TIMELOCK $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 artifacts
- name: Save Deployment ABI
run: |
forge inspect src/MultiSigEnterpriseVault.sol:MultiSigEnterpriseVault abi > dist/deployment_abi.json
- name: Upload deployment artifact
- name: Upload Deployment Artifact
uses: actions/upload-artifact@v4
with:
name: MultiSigEnterpriseVault
Expand Down

0 comments on commit 3c4ef4c

Please sign in to comment.