From fab79e7919671242931235e47e5fb96f67dd9100 Mon Sep 17 00:00:00 2001 From: Cinkafox <70429757+Cinkafox@users.noreply.github.com> Date: Mon, 10 Mar 2025 21:31:46 +0300 Subject: [PATCH] - tweak: Update build.yml --- .github/workflows/build.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f8e0380..224e5e9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,8 +29,8 @@ jobs: - name: ZIP Release uses: montudor/action-zip@v1 with: - args: zip -qq -r ./Release/Release.zip ./Release - - name: FTP Deploy + args: zip -qq -r ./Release.zip ./Release + - name: FTP Deploy Data uses: SamKirkland/FTP-Deploy-Action@v4.3.5 with: server: ${{ secrets.FTP_SERVER }} @@ -38,3 +38,11 @@ jobs: password: ${{ secrets.FTP_PASSWORD }} local-dir: ./Release/ server-dir: ./${{ github.sha }}/ + - name: FTP Deploy Release + uses: SamKirkland/FTP-Deploy-Action@v4.3.5 + with: + server: ${{ secrets.FTP_SERVER }} + username: ${{ secrets.FTP_USERNAME }} + password: ${{ secrets.FTP_PASSWORD }} + local-dir: ./Release.zip + server-dir: ./Release.zip