From c63f370df2779d1d2b15ea03fe1f57c8c474c3b4 Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Tue, 27 Feb 2024 12:10:41 +0000 Subject: [PATCH] first attempt at a dotnet docker build --- .gitea/workflows/msbuild.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/.gitea/workflows/msbuild.yaml b/.gitea/workflows/msbuild.yaml index e69de29..c6cd923 100644 --- a/.gitea/workflows/msbuild.yaml +++ b/.gitea/workflows/msbuild.yaml @@ -0,0 +1,24 @@ +name: msbuild + +on: [push] + +env: + BUILD_TYPE: Release + +jobs: + build: + runs-on: dotnet7 + steps: + - name: Prep for local builds + run: echo "${LOCIP} gitea.comnenos" >> /etc/hosts + - uses: actions/checkout@v2 + + - name: Start Web + shell: bash + working-directory: ${{runner.workspace}}/MyWebApp + run: nohub dotnet run & + + - name: Run Playwright Tests + shell: bash + working-directory: ${{runner.workspace}}/PlaywriteTests + run: dotnet test