github: exclude .well-known when uploading

The web hosting provider automatically creates this directory.
This commit is contained in:
David Lechner
2021-06-08 15:31:18 -05:00
parent a3bda0411f
commit 5ec220ae5f
+1 -1
View File
@@ -36,4 +36,4 @@ jobs:
LFTP_PASSWORD: ${{ secrets.lftpPassword }}
LFTP_SITE: ${{ secrets.lftpSite }}
run: |
lftp -e "open --user $LFTP_USER --env-password $LFTP_SITE && mirror --verbose --reverse --delete --exclude=.htaccess build code; exit"
lftp -e "open --user $LFTP_USER --env-password $LFTP_SITE && mirror --verbose --reverse --delete --exclude=.htaccess --exclude=.well-known build code; exit"