From e1557fb97a5ed756986c6f027967c1e44331d8ec Mon Sep 17 00:00:00 2001 From: Andreas Hnida Date: Wed, 17 Apr 2024 07:47:17 +0200 Subject: [PATCH] Add FTPS protocol for deployment to ensure secure connection. --- .gitea/workflows/pipeline-test.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitea/workflows/pipeline-test.yaml b/.gitea/workflows/pipeline-test.yaml index 2f01fa0..3914373 100644 --- a/.gitea/workflows/pipeline-test.yaml +++ b/.gitea/workflows/pipeline-test.yaml @@ -42,6 +42,7 @@ jobs: - name: test deployment via FTP uses: SamKirkland/FTP-Deploy-Action@4.0.0 with: + protocol: ftps # Ensure to use FTPS server: ${{ secrets.FTP_SERVER }} username: ${{ secrets.FTP_USERNAME }} password: ${{ secrets.FTP_PASSWORD }}