diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index ed7052e..0391788 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -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"