Skip to content
This repository has been archived by the owner on Jan 29, 2025. It is now read-only.

Commit

Permalink
Fix working direcotures
Browse files Browse the repository at this point in the history
  • Loading branch information
arkoc committed Aug 6, 2024
1 parent cfd017f commit c9e2cac
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions .github/workflows/deploy-evms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,37 +21,39 @@ jobs:
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}

- name: Navigate to evm folder
run: cd packages/evm

- name: Install dependencies
run: npm ci

- name: Navigate to solidity folder
run: cd solidity
working-directory: packages/evm

- name: Compile contracts
run: npx hardhat compile
working-directory: packages/evm/solidity

# - name: Run tests
# run: npx hardhat test

# deploy eth contracts
- name: Deploy to Sepolia testnet
run: npx hardhat run scripts/deployETH.js --network sepolia
working-directory: packages/evm/solidity

- name: Deploy to Optimism Sepolia testnet
run: npx hardhat run scripts/deployETH.js --network optimismSepolia
working-directory: packages/evm/solidity

- name: Deploy to Arbitrum Sepolia testnet
run: npx hardhat run scripts/deployETH.js --network arbitrumSepolia

working-directory: packages/evm/solidity

- name: Deploy to Linea Sepolia testnet
run: npx hardhat run scripts/deployETH.js --network lineaSepolia

working-directory: packages/evm/solidity

- name: Deploy to Taiko Hekla testnet
run: npx hardhat run scripts/deployETH.js --network taikoHekla
working-directory: packages/evm/solidity

- name: Deploy to Immutable Testnet
run: npx hardhat run scripts/deployETH.js --network immutableTestnet
run: npx hardhat run scripts/deployETH.js --network immutableTestnet
working-directory: packages/evm/solidity

0 comments on commit c9e2cac

Please sign in to comment.