try shellscript execution of webapp
msbuild / build (push) Failing after 28s Details

This commit is contained in:
Greg Gauthier 2024-02-27 14:28:38 +00:00
parent 5e2671de20
commit 3cd30ea9d1
2 changed files with 6 additions and 1 deletions

View File

@ -29,7 +29,7 @@ jobs:
- name: Start Web App
shell: bash
working-directory: ${{runner.workspace}}
run: cd MyWebApp && nohup dotnet run &
run: cd MyWebApp && ./runwebapp.sh
- name: Build Playwright & Add Dependencies
shell: bash

5
MyWebApp/runwebapp.sh Normal file
View File

@ -0,0 +1,5 @@
#!/usr/bin/env bash
sh nohup dotnet run &
disown
exit 0