Skip to content

Commit

Permalink
ci: don't skip deployment if link checker fails
Browse files Browse the repository at this point in the history
  • Loading branch information
marten-seemann committed Mar 23, 2024
1 parent 8bbf549 commit 73da690
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
pages_path: ./build/
cmd_params: '--buffer-size=8192 --max-connections=10 --color=always --skip-tls-verification --header="User-Agent:curl/7.54.0" --timeout=20 --exclude=github.com/quic-go/docs'
- uses: burnett01/rsync-deployments@93f02b856fbeaf9a8fbfdd8ce1a4adfd0843f849 # v7.0.0
if: ${{ github.event_name == 'push' }}
if: always() && ${{ github.event_name == 'push' }}
with:
switches: -avzr --delete
path: ./build/
Expand Down

0 comments on commit 73da690

Please sign in to comment.