diff --git a/.github/workflows/build-dev.yml b/.github/workflows/build-dev.yml index 8319d0d2..e8eaadf6 100644 --- a/.github/workflows/build-dev.yml +++ b/.github/workflows/build-dev.yml @@ -19,6 +19,9 @@ jobs: - name: Build if: ${{ success() }} run: yarn build + - name: Install lftp + if: ${{ success() }} + run: sudo apt-get update && sudo apt-get install --yes lftp - name: Publish if: ${{ success() }} shell: bash @@ -27,5 +30,4 @@ jobs: LFTP_PASSWORD: ${{ secrets.lftpPassword }} LFTP_SITE: ${{ secrets.lftpSite }} run: | - sudo apt-get update && sudo apt-get install --yes lftp - lftp -e "set ssl:check-hostname false; open --user $LFTP_USER --env-password $LFTP_SITE && mirror --reverse --delete --exclude=.htaccess build code; exit" + lftp -e "set ssl:check-hostname false; open --user $LFTP_USER --env-password $LFTP_SITE && mirror --verbose --reverse --delete --exclude=.htaccess build code; exit"