Update buildproject.yaml
All checks were successful
Gitea Actions Demo / Publish Dotnet 8.0.405 Profile PublishLinuxX64 (push) Successful in 1m16s
Gitea Actions Demo / Publish Dotnet 8.0.405 Profile PublishWinX64 (push) Successful in 1m15s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 9s

This commit is contained in:
2025-01-18 17:37:47 +01:00
parent 76a163f1d3
commit 0d043d07a7

View File

@@ -8,11 +8,12 @@ jobs:
strategy: strategy:
matrix: matrix:
dotnet: [ '8.0.405' ] dotnet: [ '8.0.405' ]
name: Dotnet ${{ matrix.dotnet }} sample publishprofile: [ 'PublishLinuxX64', 'PublishWinX64' ]
name: Publish Dotnet ${{ matrix.dotnet }} Profile ${{ matrix.publishprofile }}
steps: steps:
- uses: actions/checkout@master - uses: actions/checkout@master
- name: Setup dotnet - name: Setup dotnet
uses: actions/setup-dotnet@v1 uses: actions/setup-dotnet@v1
with: with:
dotnet-version: ${{ matrix.dotnet }} dotnet-version: ${{ matrix.dotnet }}
- run: dotnet publish GiteaTest.sln -p:PublishProfile=PublishLinuxX64 - run: dotnet publish GiteaTest.sln -p:PublishProfile=${{ matrix.publishprofile }}