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 aa3d690 commit ebb3e74Copy full SHA for ebb3e74
.github/workflows/docs-build.yml
@@ -52,7 +52,7 @@ env:
52
53
jobs:
54
docs-make:
55
- if: github.event.pull_request.draft == false
+ if: github.event_name != 'pull_request' || github.event.pull_request.draft == true
56
runs-on: ubuntu-22.04
57
strategy:
58
fail-fast: false
@@ -69,6 +69,7 @@ jobs:
69
run: |
70
git config --global credential.helper store
71
echo "https://$GITHUB_ACTOR:[email protected]" > ~/.git-credentials
72
+ git config --global lfs.url "https://$GITHUB_ACTOR:[email protected]"
73
- uses: actions/checkout@v5
74
with:
75
ref: ${{ inputs.checkout }}
0 commit comments