update: workflow to conform with net framework standards #2
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 Build | |
| on: | |
| push | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| env: | |
| TELERIK_LICENSE: ${{ secrets.TELERIK_LICENSE }} | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Setup MSBuild | |
| uses: microsoft/setup-msbuild@v2 | |
| - name: Setup NuGet | |
| uses: NuGet/[email protected] | |
| - name: Restore NuGet Packages for Telerik.Examples.Mvc | |
| run: nuget restore Telerik.Examples.Mvc/Telerik.Examples.Mvc.sln -ConfigFile NuGet.Config | |
| env: | |
| TELERIK_NUGET_KEY: ${{secrets.TELERIK_NUGET_KEY}} | |
| - name: Build Telerik.Examples.Mvc Project | |
| run: msbuild Telerik.Examples.Mvc/Telerik.Examples.Mvc.sln -t:rebuild -property:Configuration=Release | |
| env: | |
| TELERIK_LICENSE: ${{secrets.TELERIK_LICENSE_KEY}} |