From 78bddfd8393bbe9173d2bb7205ae2fb9ffa9f839 Mon Sep 17 00:00:00 2001 From: Andrew Conlin Date: Wed, 1 Mar 2023 22:19:00 +0000 Subject: [PATCH] added github action to deply website on push --- .github/workflows/main.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..4f952be --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,16 @@ +on: push +name: 🚀 Deploy website on push +jobs: + web-deploy: + name: 🎉 Deploy + runs-on: ubuntu-latest + steps: + - name: 🚚 Get latest code + uses: actions/checkout@v3 + + - name: 📂 Sync files + uses: SamKirkland/FTP-Deploy-Action@4.3.3 + with: + server: ftp.andrewconl.in + username: andrewconl.in + password: ${{ secrets.ftp_password }}