From be99d152b160528bfcfb333a2537daa72f7ac268 Mon Sep 17 00:00:00 2001 From: "Burgstede, W.Y. (Ysbrand, Student B-CREA)" Date: Sun, 16 Jun 2024 00:32:08 +0200 Subject: [PATCH] Increase the ftp timeout --- .github/workflows/deploy.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index a7d6c3a..f6dbb02 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -154,8 +154,10 @@ jobs: - name: ➗ Calculate checksum run: openssl md5 ${{ env.BUILD_ARTIFACT_STAGING_DIR }}build.zip | cut -d" " -f2 > ${{ env.BUILD_ARTIFACT_STAGING_DIR }}checksum.txt - name: 📂 Sync files - uses: SamKirkland/FTP-Deploy-Action@4.1.0 + uses: SamKirkland/FTP-Deploy-Action@3.0.0 with: + log-level: verbose + timeout: 60000 server: ${{ secrets.HOST_SERVER }} username: ${{ secrets.FTP_USER }} password: ${{ secrets.FTP_PASSWORD }}