This commit is contained in:
66
.github/workflows/deploy.yml
vendored
66
.github/workflows/deploy.yml
vendored
@@ -8,34 +8,52 @@ jobs:
|
|||||||
deploy:
|
deploy:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Deploy to Windows Machine
|
- name: Clone or Update Repository
|
||||||
uses: appleboy/ssh-action@v1.0.3
|
uses: appleboy/ssh-action@v1.0.3
|
||||||
with:
|
with:
|
||||||
host: ${{ secrets.REMOTE_HOST }}
|
host: ${{ secrets.REMOTE_HOST }}
|
||||||
username: ${{ secrets.REMOTE_USER }}
|
username: ${{ secrets.REMOTE_USER }}
|
||||||
key: ${{ secrets.SSH_PRIVATE_KEY }}
|
key: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||||
passphrase: ${{ secrets.SSH_PASSPHRASE }}
|
passphrase: ${{ secrets.SSH_PASSPHRASE }}
|
||||||
script_shell: pwsh
|
|
||||||
script: |
|
script: |
|
||||||
if (Test-Path "C:\projects\digital-resume-FE") {
|
powershell -Command "if (Test-Path 'C:\projects\digital-resume-FE') { Set-Location C:\projects\digital-resume-FE; git pull origin main } else { New-Item -ItemType Directory -Path C:\projects -Force; Set-Location C:\projects; git clone https://gitea.sashabayda.ca/Bayda77/digital-resume-FE.git; Set-Location digital-resume-FE }"
|
||||||
Set-Location C:\projects\digital-resume-FE
|
|
||||||
git pull origin main
|
- name: Stop and Remove Existing Container
|
||||||
} else {
|
uses: appleboy/ssh-action@v1.0.3
|
||||||
New-Item -ItemType Directory -Path C:\projects -Force
|
with:
|
||||||
Set-Location C:\projects
|
host: ${{ secrets.REMOTE_HOST }}
|
||||||
git clone https://gitea.sashabayda.ca/Bayda77/digital-resume-FE.git
|
username: ${{ secrets.REMOTE_USER }}
|
||||||
Set-Location digital-resume-FE
|
key: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||||
}
|
passphrase: ${{ secrets.SSH_PASSPHRASE }}
|
||||||
|
script: |
|
||||||
$container = docker ps -a -q -f name=resume-frontend
|
powershell -Command "$container = docker ps -a -q -f name=resume-frontend; if ($container) { docker stop resume-frontend; Start-Sleep -Seconds 2; docker rm resume-frontend }"
|
||||||
if ($container) {
|
|
||||||
docker stop resume-frontend
|
- name: Build Docker Image
|
||||||
Start-Sleep -Seconds 2
|
uses: appleboy/ssh-action@v1.0.3
|
||||||
docker rm resume-frontend
|
with:
|
||||||
}
|
host: ${{ secrets.REMOTE_HOST }}
|
||||||
|
username: ${{ secrets.REMOTE_USER }}
|
||||||
docker build -t resume-frontend:latest .
|
key: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||||
|
passphrase: ${{ secrets.SSH_PASSPHRASE }}
|
||||||
docker run -d --name resume-frontend --restart unless-stopped -p 3000:80 resume-frontend:latest
|
script: |
|
||||||
|
powershell -Command "Set-Location C:\projects\digital-resume-FE; docker build -t resume-frontend:latest ."
|
||||||
docker image prune -f
|
|
||||||
|
- name: Run Docker Container
|
||||||
|
uses: appleboy/ssh-action@v1.0.3
|
||||||
|
with:
|
||||||
|
host: ${{ secrets.REMOTE_HOST }}
|
||||||
|
username: ${{ secrets.REMOTE_USER }}
|
||||||
|
key: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||||
|
passphrase: ${{ secrets.SSH_PASSPHRASE }}
|
||||||
|
script: |
|
||||||
|
powershell -Command "docker run -d --name resume-frontend --restart unless-stopped -p 3000:80 resume-frontend:latest"
|
||||||
|
|
||||||
|
- name: Cleanup Unused Images
|
||||||
|
uses: appleboy/ssh-action@v1.0.3
|
||||||
|
with:
|
||||||
|
host: ${{ secrets.REMOTE_HOST }}
|
||||||
|
username: ${{ secrets.REMOTE_USER }}
|
||||||
|
key: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||||
|
passphrase: ${{ secrets.SSH_PASSPHRASE }}
|
||||||
|
script: |
|
||||||
|
powershell -Command "docker image prune -f"
|
||||||
|
|||||||
Reference in New Issue
Block a user