From 927dfc45e763d6384b09e3a76bbfbf79c4409ced Mon Sep 17 00:00:00 2001 From: Neo Date: Wed, 4 Mar 2026 09:41:20 +0000 Subject: [PATCH] Remove CI/CD workflow - use manual deploy --- .github/workflows/deploy.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index 8aacf94..0000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Deploy to Production - -on: - push: - branches: [master, main] - -jobs: - deploy: - runs-on: ubuntu-latest - steps: - - name: Deploy to server - uses: appleboy/ssh-action@v0.1.0 - with: - host: ${{ secrets.HOST }} - username: root - key: ${{ secrets.SSH_KEY }} - script: | - cd /root/manoonoils-store - git pull origin master - npm run build - docker build -t manoonoils-store:latest . - docker stop manoonoils-store && docker rm manoonoils-store - docker run -d --name manoonoils-store -p 3000:3000 --env-file .env.local manoonoils-store:latest - docker network connect coolify manoonoils-store