Bump actions/checkout from 4 to 6 #87
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/CD | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| name: Build and Publish | |
| env: | |
| solution-path: './src/GitHub Cost Visualizer.sln' | |
| webproject-path: './src/GitHubCostVisualizer.Web/GitHubCostVisualizer.Web.csproj' | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Ensure .NET Installed | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 10.0.x | |
| - name: Install GitVersion | |
| uses: gittools/actions/gitversion/setup@v4.2.0 | |
| with: | |
| versionSpec: '6.4.0' | |
| - name: Determine Version | |
| id: gitversion | |
| uses: gittools/actions/gitversion/execute@v4.2.0 | |
| with: | |
| useConfigFile: true | |
| - name: Restore Packages | |
| run: dotnet restore "${{ env.solution-path }}" | |
| - name: Build | |
| run: dotnet build "${{ env.solution-path }}" --no-restore --configuration Release -p:version=${{ steps.gitversion.outputs.majorMinorPatch }} | |
| - name: Publish | |
| run: dotnet publish "${{ env.webproject-path }}" --runtime win-x64 --configuration Release --output ./App --no-restore -p:version=${{ steps.gitversion.outputs.majorMinorPatch }} | |