You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the changes in #114, we deploy contracts to Devnet when we make changes to main. Contracts are blindly re-deployed, which is fine in testing environments but to be avoided when real money is involved.
Let's add a check to avoid re-deploying contracts. One possible approach would be to compile the contracts on the previous commit and then re-compile on the current commit. This may be enough to prevent hardhat from re-deploying, but it needs more investigation.
The text was updated successfully, but these errors were encountered:
With the changes in #114, we deploy contracts to Devnet when we make changes to
main
. Contracts are blindly re-deployed, which is fine in testing environments but to be avoided when real money is involved.Let's add a check to avoid re-deploying contracts. One possible approach would be to compile the contracts on the previous commit and then re-compile on the current commit. This may be enough to prevent hardhat from re-deploying, but it needs more investigation.
The text was updated successfully, but these errors were encountered: