Fix missing credentials

This commit is contained in:
Jay Trees 2022-02-28 16:05:05 +01:00
parent e309b5de09
commit 6894f8c002

View file

@ -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 }}