From 418014fb0476c23081a32fad2cdf1d2f9e09600f Mon Sep 17 00:00:00 2001 From: Bayda77 Date: Sun, 4 Jan 2026 04:20:24 -0600 Subject: [PATCH] test: no comments --- .github/workflows/deploy.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 9ef341d..5a1c4bf 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -17,7 +17,6 @@ jobs: passphrase: ${{ secrets.SSH_PASSPHRASE }} script_shell: pwsh script: | - # Navigate to project directory or clone if it doesn't exist if (Test-Path "C:\projects\digital-resume-FE") { Set-Location C:\projects\digital-resume-FE git pull origin main @@ -28,7 +27,6 @@ jobs: Set-Location digital-resume-FE } - # Stop and remove existing container if it exists $container = docker ps -a -q -f name=resume-frontend if ($container) { docker stop resume-frontend @@ -36,11 +34,8 @@ jobs: docker rm resume-frontend } - # Build the Docker image docker build -t resume-frontend:latest . - # Run new container docker run -d --name resume-frontend --restart unless-stopped -p 3000:80 resume-frontend:latest - # Cleanup unused images docker image prune -f