This repository has been archived by the owner on Jan 21, 2024. It is now read-only.
feat: add temprory landing page #13
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
name: CI -> Deploy to dreamsofwomen.org | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# Here is the deployment action | |
- name: Upload to public_html via FTP | |
uses: airvzxf/ftp-deployment-action@latest | |
with: | |
server: ${{ secrets.FTP_SERVER }} | |
user: ${{ secrets.FTP_USERNAME }} | |
password: ${{ secrets.FTP_PASSWORD }} | |
port: 21 |