From 342d9ecaa57c6d873c0e5b3030403dbce16770f5 Mon Sep 17 00:00:00 2001 From: DNA-styx <154759339+DNA-styx@users.noreply.github.com> Date: Thu, 26 Dec 2024 13:16:46 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=B3=20chore:=20Auto-upload=20to=20DEV?= =?UTF-8?q?=20server?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/dev-site-upload.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/dev-site-upload.yml diff --git a/.github/workflows/dev-site-upload.yml b/.github/workflows/dev-site-upload.yml new file mode 100644 index 0000000..a93ff43 --- /dev/null +++ b/.github/workflows/dev-site-upload.yml @@ -0,0 +1,20 @@ +name: 🚀 Deploy DEV Root website +on: + workflow_dispatch: + push: +jobs: + web-deploy: + name: 🎉 Deploy + runs-on: ubuntu-latest + steps: + - name: 🚚 Get latest code + uses: actions/checkout@v4 + + - name: 📂 Sync files + uses: SamKirkland/FTP-Deploy-Action@v4.3.5 + with: + server: ${{ secrets.ftpdevhost }} + username: ${{ secrets.ftpdevusername }} + password: ${{ secrets.ftpdevpassword }} + server-dir: httpdocs/ + local-dir: web/ \ No newline at end of file