Skip to content

Instantly share code, notes, and snippets.

@kalilinux-png
Created December 10, 2023 13:15
Show Gist options
  • Save kalilinux-png/7837814b1d5582a79bc4567414de6786 to your computer and use it in GitHub Desktop.
Save kalilinux-png/7837814b1d5582a79bc4567414de6786 to your computer and use it in GitHub Desktop.
Github Actions FTP
on: push
name: Deploy To Production Server
jobs:
web-deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
# uncommnet this if you want to build your site before deploying
- name: Sync Files
uses: SamKirkland/FTP-Deploy-Action@v4.3.4
with:
server: ${{ secrets.FTP_SERVER }}
username: ${{secrets.FTP_USERNAME }}
password: ${{secrets.FTP_PASSWORD }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment