Skip to content

Human Made Mark

Human Made Mark #37

Workflow file for this run

on:
push:
branches:
- "main"
name: Deploy on FTP server
jobs:
web-deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Get latest code
uses: actions/checkout@v3
- name: Sync files
uses: SamKirkland/[email protected]
with:
server: ${{ secrets.ftp_server }}
username: ${{ secrets.ftp_username }}
password: ${{ secrets.ftp_password }}
dry-run: false
server-dir: ${{ secrets.ftp_dir }}
exclude: |
**/.git*
**/.git*/**
**/.idea/**
README.md