mirror of
https://github.com/Rushilwiz/astute-site.git
synced 2025-04-09 23:00:18 -04:00
19 lines
448 B
YAML
19 lines
448 B
YAML
on: push
|
|
name: 🚀 Deploy website on push
|
|
jobs:
|
|
web-deploy:
|
|
name: 🎉 Deploy
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: 🚚 Get latest code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: 📂 Sync files
|
|
uses: SamKirkland/FTP-Deploy-Action@4.3.2
|
|
with:
|
|
server: ftp.astuteng.com
|
|
username: ${{ secrets.username }}
|
|
password: ${{ secrets.password }}
|
|
port: 21
|
|
server-dir: public-html/
|