Skip to content

Commit 9e48067

Browse files
authored
Create main.yml
1 parent 061d4a1 commit 9e48067

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/main.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.5
13+
with:
14+
server: ${{ secrets.FTP_SERVER }}
15+
username: ${{ secrets.FTP_USERNAME }}
16+
password: ${{ secrets.FTP_PASSWORD }}

0 commit comments

Comments
 (0)