From 01277f8422fbe77ae8a57a255f54a9fa9253e62d Mon Sep 17 00:00:00 2001 From: ministicraft Date: Tue, 14 Apr 2026 00:48:45 +0200 Subject: [PATCH] chore: remove SSH deploy workflow in favor of pages branch Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .gitea/workflows/deploy.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .gitea/workflows/deploy.yml diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml deleted file mode 100644 index e052733..0000000 --- a/.gitea/workflows/deploy.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Deploy presentation - -on: - push: - branches: [master] - -jobs: - deploy: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Deploy via SSH - uses: appleboy/ssh-action@v1 - with: - host: ${{ secrets.DEPLOY_HOST }} - username: ${{ secrets.DEPLOY_USER }} - key: ${{ secrets.DEPLOY_SSH_KEY }} - script: | - export GIT_OPTIONAL_LOCKS=0 - mkdir -p /var/www/prez-finistdev - cd /var/www/prez-finistdev - git config --global gc.writeCommitGraph false - git clone https://git.cloud.arnaud-pc.fr/ministicraft/finistdev-configuration-as-code.git . 2>/dev/null || git pull origin master