This commit is contained in:
parent
8765658254
commit
05d1305194
@ -85,16 +85,17 @@ jobs:
|
||||
docker stop live-server-container
|
||||
docker rm live-server-container
|
||||
- name: Start Live Server
|
||||
#-v ${{ github.workspace }}:/usr/src/app
|
||||
run: |
|
||||
ls -la
|
||||
echo ${{ github.workspace }}
|
||||
pwd
|
||||
docker run -d --name live-server-container -p 8081:8081 -v ${{ github.workspace }}:/usr/src/app gitbase.de/robin/live-server
|
||||
docker run -d --name live-server-container -p 8081:8081 gitbase.de/robin/live-server:latest
|
||||
|
||||
- name: Wait for Live Server
|
||||
run: |
|
||||
attempts=0
|
||||
max_attempts=10
|
||||
max_attempts=4
|
||||
while ! curl --output /dev/null --silent --head --fail http://127.0.0.1:8081; do
|
||||
if [ $attempts -eq $max_attempts ]; then
|
||||
echo "Live server not ready after $max_attempts attempts"
|
||||
|
Loading…
Reference in New Issue
Block a user