Skip to content

Commit

Permalink
feat: create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ratheesk authored Jan 21, 2024
1 parent e7f24c7 commit 88945fa
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
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

0 comments on commit 88945fa

Please sign in to comment.