added github action to deply website on push

This commit is contained in:
Andrew Conlin 2023-03-01 22:19:00 +00:00 committed by GitHub
parent 9298ec29a6
commit 78bddfd839
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

16
.github/workflows/main.yml vendored Normal file
View File

@ -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 }}