Skip to content

Commit

Permalink
fix: auto stop (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
wy-luke committed Sep 11, 2023
1 parent ec7187e commit e12070c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ jobs:
sparse-checkout: sd-installer.sh
sparse-checkout-cone-mode: false
- name: Yes
run: until bash sd-installer.sh -1 | grep -m 1 "Launching Web UI with arguments"; do : ; done
run: |
until bash sd-installer.sh -1 | grep -m 1 "Launching Web UI with arguments"; do : ; done
shell: bash

No-Test:
Expand All @@ -27,5 +28,6 @@ jobs:
sparse-checkout: sd-installer.sh
sparse-checkout-cone-mode: false
- name: No
run: until bash sd-installer.sh -2 | grep -m 1 "Launching Web UI with arguments"; do : ; done
run: |
until bash sd-installer.sh -2 | grep -m 1 "Launching Web UI with arguments"; do : ; done
shell: bash

0 comments on commit e12070c

Please sign in to comment.