-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove me. this should not be merged
- Loading branch information
Showing
5 changed files
with
47 additions
and
772 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Deploy Devnet contracts | ||
|
||
# on: workflow_dispatch | ||
on: | ||
push: | ||
branches: | ||
- arsen/fix-pow-proxy-update-2 | ||
jobs: | ||
contracts: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
context: app | ||
|
||
- name: Install Doppler CLI | ||
uses: dopplerhq/cli-action@v1 | ||
|
||
- name: Deploy contracts | ||
id: deploy-contracts | ||
env: | ||
DOPPLER_TOKEN: ${{ secrets.DEVNET_DOPPLER_TOKEN_CONTRACTS_DEPLOY }} | ||
run: | | ||
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 config --global user.email "[email protected]" | ||
git config --global user.name "Arsen" | ||
git checkout -b devnet/chore-updates-after-deploying-contracts | ||
git add pkg/web3/bindings | ||
git add hardhat/deployments | ||
git add hardhat/.openzeppelin | ||
git commit -m "chore: Contract Migration Updated" | ||
git push -u origin devnet/chore-updates-after-deploying-contracts |
Oops, something went wrong.