mirror of
https://github.com/haveno-dex/haveno-ts.git
synced 2025-01-28 15:27:10 -05:00
only stop mono service if running
This commit is contained in:
parent
ad7f6c5e7a
commit
bc3a6c9e39
5
.github/workflows/build.yml
vendored
5
.github/workflows/build.yml
vendored
@ -22,7 +22,10 @@ jobs:
|
||||
distribution: 'temurin'
|
||||
|
||||
- name: Stop Mono service
|
||||
run: sudo killall mono
|
||||
run: |
|
||||
if pgrep mono > /dev/null; then
|
||||
sudo killall mono;
|
||||
fi
|
||||
|
||||
- name: Start containers
|
||||
run: docker compose -f "./docker/docker-compose.yml" up -d --build
|
||||
|
Loading…
x
Reference in New Issue
Block a user