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
|
||||
uses: SamKirkland/FTP-Deploy-Action@4.3.0
|
||||
with:
|
||||
server: ftp.samkirkland.com
|
||||
username: myFtpUserName
|
||||
server: ${{ secrets.FTP_HOST }}
|
||||
username: ${{ secrets.FTP_USER }}
|
||||
password: ${{ secrets.FTP_PASSWORD }}
|
||||
protocol: ftps
|
||||
port: ${{ secrets.FTP_PORT }}
|
||||
|
|
Loading…
Reference in a new issue