Add license information to README.md #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: push | |
name: π Deploy website on push | |
jobs: | |
web-deploy: | |
name: π Deploy | |
runs-on: ubuntu-latest | |
if: ${{ github.repository_owner == 'Tearran' }} | |
steps: | |
- name: π Get latest code | |
uses: actions/checkout@v3 | |
- name: π Sync files | |
uses: SamKirkland/FTP-Deploy-Action@v4.3.4 | |
with: | |
server: ${{ secrets.SERVER_HOST}} # replace with your server | |
username: ${{ secrets.SERVER_USERNAME }} | |
password: ${{ secrets.SERVER_PASSWORD }} | |
server-dir: public_html/ # replace with your server directory | |
local-dir: ./ # replace with your local directory |