From 98e8fdd922a92587a2e71db10892ee93377ff4bc Mon Sep 17 00:00:00 2001 From: Sven Bischoff Date: Fri, 24 Jan 2025 20:50:10 +0100 Subject: [PATCH] Fixes deployment script. --- .github/workflows/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1f78a01..eaf5f10 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,14 +11,14 @@ jobs: uses: actions/setup-node@v1 with: node-version: '22.x' - - name: Install npm dependencies + - name: 🚚 Install Dependencies... run: npm ci - - name: Run cache update task + - name: 📂 Update Cache... run: npm run cache-update --if-present - - name: Run build task + - name: 🎉 Build... run: npm run build --if-present - - name: FTP-Deploy-Action - uses: SamKirkland/FTP-Deploy-Action@4.3.5 + - name: 🚀 Deploy... + uses: SamKirkland/FTP-Deploy-Action@v4.3.5 with: server: ${{ secrets.FTP_SERVER }} username: ${{ secrets.FTP_USER }}