Skip to content

Commit ddd854c

Browse files
authored
Change FTP deployment to FTPS
1 parent 8959575 commit ddd854c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Deploy to Web Server via FTP
1+
name: Deploy to Web Server via FTPS
22

33
on:
44
push:
@@ -13,13 +13,14 @@ jobs:
1313
- name: Checkout code
1414
uses: actions/checkout@v3
1515

16-
- name: Deploy to FTP server
16+
- name: Deploy to FTPS server
1717
uses: SamKirkland/FTP-Deploy-Action@v4.3.4
1818
with:
1919
server: ${{ secrets.FTP_SERVER }}
2020
username: ${{ secrets.FTP_USERNAME }}
2121
password: ${{ secrets.FTP_PASSWORD }}
22-
server-dir: /shvtech/radio/QSL_card_designer/ # デプロイ先のディレクトリ(必要に応じて変更)
22+
protocol: ftps
23+
server-dir: /shvtech/radio/QSL_card_designer/
2324
exclude: |
2425
**/.git*
2526
**/.git*/**

0 commit comments

Comments
 (0)