Skip to content

Commit 709d87f

Browse files
committed
run dump
1 parent 42f7098 commit 709d87f

2 files changed

Lines changed: 2008 additions & 5 deletions

File tree

docs/llm/dump.txt

Lines changed: 60 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
===============================================================================
22
PROJECT EXPORT
3-
Generated: Fri Jan 30 05:04:49 PM EST 2026
3+
Generated: Fri Jan 30 05:19:37 PM EST 2026
44
Project Path: /home/kushal/src/dotnet/MyBlog
55
===============================================================================
66

@@ -73,7 +73,9 @@ DIRECTORY STRUCTURE:
7373
│   │   ├── instructions.md
7474
│   │   ├── kush.runasp.net-WebDeploy.publishSettings
7575
│   │   ├── memory.md
76-
│   │   └── playwright.md
76+
│   │   ├── nice.runasp.net-WebDeploy.publishSettings
77+
│   │   ├── playwright.md
78+
│   │   └── secret.log
7779
│   └── E2E-TESTING.md
7880
├── .github
7981
│   └── workflows
@@ -667,8 +669,8 @@ echo ""
667669

668670
================================================================================
669671
FILE: .github/workflows/build-deploy.yml
670-
SIZE: 5.11 KB
671-
MODIFIED: 2026-01-27 13:29:41
672+
SIZE: 7.14 KB
673+
MODIFIED: 2026-01-30 17:16:39
672674
================================================================================
673675

674676
name: Build, Test, and Deploy
@@ -838,6 +840,59 @@ jobs:
838840

839841
Write-Host "Deployment completed successfully!"
840842

843+
deploynice:
844+
needs: [build-test, e2e-tests]
845+
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master' || github.ref == 'refs/heads/develop'
846+
runs-on: windows-latest
847+
848+
steps:
849+
- name: Checkout repository
850+
uses: actions/checkout@v4
851+
852+
- name: Setup .NET 10
853+
uses: actions/setup-dotnet@v4
854+
with:
855+
dotnet-version: '10.0.x'
856+
857+
- name: Publish application
858+
run: dotnet publish src/MyBlog.Web/MyBlog.Web.csproj -c Release -o ./publish -r win-x86 --self-contained false
859+
860+
- name: Deploy via WebDeploy
861+
shell: pwsh
862+
env:
863+
DEPLOY_SOURCE: ${{ github.workspace }}\publish
864+
DEPLOY_SITE: ${{ secrets.NICE_WEBSITE_NAME }}
865+
DEPLOY_HOST: ${{ secrets.NICE_SERVER_COMPUTER_NAME }}
866+
DEPLOY_USER: ${{ secrets.NICE_SERVER_USERNAME }}
867+
DEPLOY_PASSWORD: ${{ secrets.NICE_SERVER_PASSWORD }}
868+
run: |
869+
$msdeployPath = "C:\Program Files\IIS\Microsoft Web Deploy V3\msdeploy.exe"
870+
871+
if (-not (Test-Path $msdeployPath)) {
872+
Write-Host "Installing Web Deploy..."
873+
choco install webdeploy -y --no-progress
874+
}
875+
876+
Write-Host "Deploying to $env:DEPLOY_HOST..."
877+
Write-Host "Note: Using AppOffline rule to prevent file-in-use errors"
878+
879+
$sourceArg = "-source:contentPath=$env:DEPLOY_SOURCE"
880+
$destArg = "-dest:contentPath=$env:DEPLOY_SITE,computerName=https://$($env:DEPLOY_HOST):8172/MsDeploy.axd?site=$env:DEPLOY_SITE,userName=$env:DEPLOY_USER,password=$env:DEPLOY_PASSWORD,AuthType='Basic'"
881+
882+
& $msdeployPath -verb:sync $sourceArg $destArg `
883+
-allowUntrusted `
884+
-enableRule:DoNotDeleteRule `
885+
-enableRule:AppOffline `
886+
-retryAttempts:3 `
887+
-retryInterval:3000
888+
889+
if ($LASTEXITCODE -ne 0) {
890+
Write-Error "Deployment failed with exit code $LASTEXITCODE"
891+
exit 1
892+
}
893+
894+
Write-Host "Deployment completed successfully!"
895+
841896

842897
================================================================================
843898
FILE: .gitignore
@@ -16573,7 +16628,7 @@ window.themeManager = {
1657316628

1657416629

1657516630
===============================================================================
16576-
EXPORT COMPLETED: Fri Jan 30 05:04:50 PM EST 2026
16631+
EXPORT COMPLETED: Fri Jan 30 05:19:38 PM EST 2026
1657716632
Total Files Found: 126
1657816633
Files Exported: 126
1657916634
Files Skipped: 0 (binary or large files)

0 commit comments

Comments
 (0)