Skip to content

Commit

Permalink
ci(deploy): improve devnet deployment workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
prnk28 committed Dec 11, 2024
1 parent 6f5b079 commit babab1e
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/deploy-net.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,19 @@ jobs:
runs-on: goliath
environment: "Devnet"
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Fetch latest changes
run: git fetch --prune --unshallow

- name: Stop Devnet
continue-on-error: true
run: |
cd ~/ghq/github.com/onsonr/sonr && make stop
make stop
- name: Start Devnet
run: |
cd ~/ghq/github.com/onsonr/sonr && make start
make start

0 comments on commit babab1e

Please sign in to comment.