This repository was archived by the owner on Feb 18, 2026. It is now read-only.
Archiving LogicBuilderRuntimeComponents. (#50) #128
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: CI | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| permissions: | |
| contents: read | |
| packages: write | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup .NET Core | |
| uses: actions/setup-dotnet@v1 | |
| with: | |
| dotnet-version: 8.0.100 | |
| source-url: https://nuget.pkg.github.com/bpslogicbuilder/index.json | |
| env: | |
| NUGET_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Set Variables | |
| run: | | |
| echo "GITHUB_NUGET_AUTH_TOKEN=${{ secrets.GITHUB_TOKEN }}" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append | |
| echo "REPO=${{ github.repository }}" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append | |
| echo "REPO_OWNER=${{ github.repository_owner }}" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append | |
| - name: Build and Push LogicBuilder.Attributes | |
| env: | |
| PROJECT_NAME: LogicBuilder.Attributes | |
| run: ./CI_Build_Push.ps1 | |
| shell: pwsh | |
| - name: Build and Push LogicBuilder.DataContracts | |
| env: | |
| PROJECT_NAME: LogicBuilder.DataContracts | |
| run: ./CI_Build_Push.ps1 | |
| shell: pwsh | |
| - name: Build and Push LogicBuilder.Forms.Parameters | |
| env: | |
| PROJECT_NAME: LogicBuilder.Forms.Parameters | |
| run: ./CI_Build_Push.ps1 | |
| shell: pwsh | |
| - name: Build and Push LogicBuilder.RulesDirector | |
| env: | |
| PROJECT_NAME: LogicBuilder.RulesDirector | |
| run: ./CI_Build_Push.ps1 | |
| shell: pwsh | |
| - name: Restore | |
| run: dotnet restore | |
| - name: Build | |
| run: dotnet build --configuration Release --no-restore | |
| - name: Test | |
| run: dotnet test --no-restore --verbosity normal |