Bump gittools/actions from 4.3.2 to 4.3.3 #526
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build Projects | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - develop | |
| tags: | |
| - '*' | |
| pull_request: | |
| jobs: | |
| build_libraries: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| runs-on: [macOS-latest, ubuntu-latest, windows-latest] | |
| name: build packages on ${{ matrix.runs-on }} | |
| runs-on: ${{ matrix.runs-on }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install GitVersion | |
| uses: gittools/actions/gitversion/setup@v4.3.3 | |
| with: | |
| versionSpec: '6.5.x' | |
| - name: Determine Version | |
| id: gitversion | |
| uses: gittools/actions/gitversion/execute@v4.3.3 | |
| - name: Display version information | |
| run: | | |
| echo "FullSemVer: ${{ steps.gitversion.outputs.fullSemVer }}" | |
| echo "BranchName: ${{ steps.gitversion.outputs.branchName }}" | |
| - name: Setup .NET Core | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: 10.0.x | |
| - name: Restore dependencies | |
| run: dotnet restore romaklayt.DynamicFilter.sln | |
| - name: Build romaklayt.DynamicFilter.Binder.Net | |
| run: dotnet build src/romaklayt.DynamicFilter.Binder.Net/romaklayt.DynamicFilter.Binder.Net.csproj --configuration Release --no-restore | |
| - name: Build romaklayt.DynamicFilter.Common | |
| run: dotnet build src/romaklayt.DynamicFilter.Common/romaklayt.DynamicFilter.Common.csproj --configuration Release --no-restore | |
| - name: Build romaklayt.DynamicFilter.Extensions.EntityFrameworkCore | |
| run: dotnet build src/romaklayt.DynamicFilter.Extensions.EntityFrameworkCore/romaklayt.DynamicFilter.Extensions.EntityFrameworkCore.csproj --configuration Release --no-restore | |
| - name: Build romaklayt.DynamicFilter.Extensions.Async | |
| run: dotnet build src/romaklayt.DynamicFilter.Extensions.Async/romaklayt.DynamicFilter.Extensions.Async.csproj --configuration Release --no-restore | |
| - name: Build romaklayt.DynamicFilter.Parser | |
| run: dotnet build src/romaklayt.DynamicFilter.Parser/romaklayt.DynamicFilter.Parser.csproj --configuration Release --no-restore | |
| build-test-dotnet-api: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| runs-on: [macOS-latest, ubuntu-latest, windows-latest] | |
| name: build test dotnet api on ${{ matrix.runs-on }} | |
| runs-on: ${{ matrix.runs-on }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install GitVersion | |
| uses: gittools/actions/gitversion/setup@v4.3.3 | |
| with: | |
| versionSpec: '6.5.x' | |
| - name: Determine Version | |
| id: gitversion | |
| uses: gittools/actions/gitversion/execute@v4.3.3 | |
| - name: Display version information | |
| run: | | |
| echo "FullSemVer: ${{ steps.gitversion.outputs.fullSemVer }}" | |
| echo "BranchName: ${{ steps.gitversion.outputs.branchName }}" | |
| - name: Setup .NET Core | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: 10.0.x | |
| - name: Restore dependencies | |
| run: dotnet restore romaklayt.DynamicFilter.sln | |
| - name: Build romaklayt.DynamicFilter.Test.Api | |
| run: dotnet build test/romaklayt.DynamicFilter.Test.Api/romaklayt.DynamicFilter.Test.Api.csproj --configuration Release --no-restore |