From bbde6da89ebc7d24e54734a2256e6f3d1fc1905e Mon Sep 17 00:00:00 2001 From: arsen3d Date: Tue, 2 Jul 2024 12:27:06 -0700 Subject: [PATCH] Update .github/workflows/devnet_deploy_contracts.yml Co-authored-by: Brian Ginsburg <7957636+bgins@users.noreply.github.com> --- .github/workflows/devnet_deploy_contracts.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/devnet_deploy_contracts.yml b/.github/workflows/devnet_deploy_contracts.yml index f23f9ebb..aec43090 100644 --- a/.github/workflows/devnet_deploy_contracts.yml +++ b/.github/workflows/devnet_deploy_contracts.yml @@ -1,4 +1,4 @@ -name: Deploy devnet contracts +name: Deploy Devnet contracts on: workflow_dispatch @@ -22,9 +22,16 @@ jobs: cd hardhat npm ci doppler run -- npx hardhat deploy --network devnet - + cd .. + + - name: Generate Go bindings + run: | + ./stack go-bindings + - name: Commit and push run: | - git add . + git add pkg/web3/bindings + git add hardhat/deployments + git add hardhat/.openzeppelin git commit -m "chore: Contract Migration Updated" git push