feat: add CI workflow for deploying network

This commit is contained in:
Prad Nukala
2024-12-09 13:37:55 -05:00
parent 7806c07381
commit 553cff37a1
2 changed files with 24 additions and 2 deletions
+21
View File
@@ -0,0 +1,21 @@
name: Deploy Network
on:
push:
tags:
- "v*"
branches:
- develop
- feature/*
permissions:
contents: write
issues: write
jobs:
devnet_restart:
name: Restart Devnet
runs-on: ubuntu-latest
environment: "Devnet"
steps:
# Run `git checkout`
- uses: actions/checkout@v3