We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6f40ca commit a2b4b40Copy full SHA for a2b4b40
.github/workflows/pkgdown-deploy/action.yml
@@ -4,6 +4,9 @@ runs:
4
using: "composite"
5
steps:
6
- name: Deploy site
7
- run: |
8
- pkgdown::deploy_to_branch(new_process = FALSE)
9
- shell: Rscript {0}
+ uses: nick-fields/retry@v2
+ with:
+ timeout_minutes: 15
10
+ max_attempts: 10
11
+ command: |
12
+ R -q -e 'pkgdown::deploy_to_branch(new_process = FALSE)'
0 commit comments