Skip to content

Commit

Permalink
Fix broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotr Chmielnik committed Feb 23, 2024
1 parent 750ecfe commit 087a1f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish_site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
needs: setup
runs-on: ubuntu-latest
outputs:
website_version: ${{ steps.set_output.outputs.website_version }}
website_version: ${{ steps.set_var.outputs.website_version }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
run: |
sudo apt install lftp -y
lftp --version
echo "Start SFTP upload"
echo "Start SFTP upload version ${{ needs.build.outputs.website_version }}"
lftp -u ${{ secrets.SFTP_USERNAME }}, -e "set sftp:connect-program 'ssh -a -x -o StrictHostKeyChecking=no'; mkdir -p /var/www/${{ env.WEBSITE_URL }}/html/${{ needs.build.outputs.website_version }}; mirror --reverse --parallel=20 --verbose _site/ /var/www/${{ env.WEBSITE_URL }}/html/$WEBSITE_VERSION/; quit" sftp://${{ secrets.SFTP_SERVER }}
post_deploy:
Expand Down

0 comments on commit 087a1f8

Please sign in to comment.