update local-ci-cd.yml #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: Local CI/CD - ASP.NET Core | |
| on: | |
| push: | |
| branches: [ main ] | |
| jobs: | |
| build-and-deploy: | |
| runs-on: self-hosted | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v4 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '8.0.x' # Change this based on your .NET Core version | |
| - name: Restore Dependencies | |
| run: dotnet restore | |
| - name: Build App | |
| run: dotnet build --configuration Release | |
| - name: Publish App | |
| run: dotnet publish -c Release -o ./publish | |
| - name: Deploy to IIS | |
| shell: powershell | |
| run: | | |
| $destination = "C:\inetpub\wwwroot\myapp" | |
| if (!(Test-Path $destination)) { | |
| New-Item -ItemType Directory -Path $destination | |
| } | |
| # Run robocopy and capture the exit code | |
| robocopy ".\publish" $destination /E /MIR | |
| $exitCode = $LASTEXITCODE | |
| # Treat exit codes 0-7 as success | |
| if ($exitCode -le 7) { | |
| Write-Host "Robocopy completed successfully with exit code $exitCode" | |
| exit 0 | |
| } else { | |
| Write-Error "Robocopy failed with exit code $exitCode" | |
| exit $exitCode | |
| } |