Skip to content

create index.php

create index.php #4

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
name: Deploy ${{ github.event.ref }}
steps:
- name: 🚚 Get latest code
uses: actions/checkout@master
- name: 📂 Sync files (Production)
uses: SamKirkland/FTP-Deploy-Action@master
with:
server: ${{ secrets.FTP_HOST }}
username: ${{ secrets.FTP_USER }}
password: ${{ secrets.FTP_PASSWORD }}
server-dir: "public_html/"