Fix missing credentials
This commit is contained in:
parent
e309b5de09
commit
6894f8c002
1 changed files with 2 additions and 2 deletions
4
.github/workflows/ftp-deploy.yml
vendored
4
.github/workflows/ftp-deploy.yml
vendored
|
@ -14,8 +14,8 @@ jobs:
|
||||||
- name: 📂 Sync files
|
- name: 📂 Sync files
|
||||||
uses: SamKirkland/FTP-Deploy-Action@4.3.0
|
uses: SamKirkland/FTP-Deploy-Action@4.3.0
|
||||||
with:
|
with:
|
||||||
server: ftp.samkirkland.com
|
server: ${{ secrets.FTP_HOST }}
|
||||||
username: myFtpUserName
|
username: ${{ secrets.FTP_USER }}
|
||||||
password: ${{ secrets.FTP_PASSWORD }}
|
password: ${{ secrets.FTP_PASSWORD }}
|
||||||
protocol: ftps
|
protocol: ftps
|
||||||
port: ${{ secrets.FTP_PORT }}
|
port: ${{ secrets.FTP_PORT }}
|
||||||
|
|
Loading…
Reference in a new issue