Skip to content

Commit 342299a

Browse files
authored
Add FTP deployment workflow for website
1 parent 3f8d58a commit 342299a

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/deployToFTP.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
on: push
2+
name: 🚀 Deploy website on push
3+
jobs:
4+
web-deploy:
5+
name: 🎉 Deploy
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: 🚚 Get latest code
9+
uses: actions/checkout@v4
10+
11+
- name: 📂 Sync files
12+
uses: SamKirkland/FTP-Deploy-Action@v4.3.6
13+
with:
14+
server: ftpupload.net
15+
username: mseet_40007629
16+
password: ${{ secrets.ftp_password }}

0 commit comments

Comments
 (0)