Skip to content

Commit

Permalink
build: Add testnet contracts deploy action
Browse files Browse the repository at this point in the history
  • Loading branch information
bgins committed May 30, 2024
1 parent 127de06 commit 88d29fe
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/testnet_deploy_contracts.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Deploy Testnet contracts

on: workflow_dispatch

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.TESTNET_DOPPLER_TOKEN_CONTRACTS_DEPLOY }}
run: |
cd hardhat
npm ci
doppler run -- npx hardhat deploy --network arbitrumSepolia

0 comments on commit 88d29fe

Please sign in to comment.