From 0d043d07a7571ebb6d9563801e8eb062c89850a3 Mon Sep 17 00:00:00 2001 From: Fynn Wittich Date: Sat, 18 Jan 2025 17:37:47 +0100 Subject: [PATCH] Update buildproject.yaml --- .gitea/workflows/buildproject.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/buildproject.yaml b/.gitea/workflows/buildproject.yaml index b99e9b7..e437457 100644 --- a/.gitea/workflows/buildproject.yaml +++ b/.gitea/workflows/buildproject.yaml @@ -8,11 +8,12 @@ jobs: strategy: matrix: dotnet: [ '8.0.405' ] - name: Dotnet ${{ matrix.dotnet }} sample + publishprofile: [ 'PublishLinuxX64', 'PublishWinX64' ] + name: Publish Dotnet ${{ matrix.dotnet }} Profile ${{ matrix.publishprofile }} steps: - uses: actions/checkout@master - name: Setup dotnet uses: actions/setup-dotnet@v1 with: dotnet-version: ${{ matrix.dotnet }} - - run: dotnet publish GiteaTest.sln -p:PublishProfile=PublishLinuxX64 + - run: dotnet publish GiteaTest.sln -p:PublishProfile=${{ matrix.publishprofile }}