mirror of
https://github.com/haveno-dex/haveno-ts.git
synced 2025-02-05 17:25:20 -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'
|
distribution: 'temurin'
|
||||||
|
|
||||||
- name: Stop Mono service
|
- name: Stop Mono service
|
||||||
run: sudo killall mono
|
run: |
|
||||||
|
if pgrep mono > /dev/null; then
|
||||||
|
sudo killall mono;
|
||||||
|
fi
|
||||||
|
|
||||||
- name: Start containers
|
- name: Start containers
|
||||||
run: docker compose -f "./docker/docker-compose.yml" up -d --build
|
run: docker compose -f "./docker/docker-compose.yml" up -d --build
|
||||||
|
Loading…
x
Reference in New Issue
Block a user