Skip to content

Commit

Permalink
Add continue to errors
Browse files Browse the repository at this point in the history
  • Loading branch information
arkoc committed Aug 6, 2024
1 parent 9daa984 commit 95f1c51
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/deploy-evms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: Deploy Solidity Smart Contract
on:
push:
branches: [ main ]
paths:
- packages/evm/solidity/**
- .github/workflows/deploy-evms.yml
pull_request:
branches: [ main ]

Expand Down Expand Up @@ -41,23 +44,29 @@ jobs:
- name: Deploy to Sepolia testnet
run: npx hardhat run scripts/deployETH.js --network sepolia
working-directory: packages/evm/solidity
continue-on-error: true

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

continue-on-error: true

- name: Deploy to Arbitrum Sepolia testnet
run: npx hardhat run scripts/deployETH.js --network arbitrumSepolia
working-directory: packages/evm/solidity
continue-on-error: true

- name: Deploy to Linea Sepolia testnet
run: npx hardhat run scripts/deployETH.js --network lineaSepolia
working-directory: packages/evm/solidity
continue-on-error: true

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

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

0 comments on commit 95f1c51

Please sign in to comment.