-
-
Notifications
You must be signed in to change notification settings - Fork 402
-
|
This is a tip that might be useful for the main I have a repo that uses /usr/bin/git fetch --no-recurse-submodules --depth=1 origin gh-pages
After trolling through the commits, I realized things started failing when I went from: - name: Checkout
uses: actions/checkout@v4 to: - name: Checkout
uses: actions/checkout@v4 with: fetch-depth: 0 filter: blob:none in my docs workflow file. Now, I added the: with:
fetch-depth: 0 filter: blob:none in all of my actions to speed things up (though really, the blobless clone was the main thing). Turns out, /usr/bin/git fetch --no-recurse-submodules --depth=1 origin gh-pagesto fail (which is obvious in hindsight). |
Beta Was this translation helpful? Give feedback.