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 0cfa843 commit aa647ecCopy full SHA for aa647ec
.github/workflows/docs-build.yml
@@ -80,6 +80,17 @@ jobs:
80
81
# Navigate to submodule and configure LFS with correct URL
82
cd _notebooks
83
+
84
+ # Check current remote and LFS config
85
+ echo "Current remote:"
86
+ git remote -v
87
+ echo "Current LFS config:"
88
+ git config --list | grep lfs || true
89
90
+ # Set the correct remote URL with token
91
+ git remote set-url origin "https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/Lightning-AI/lightning-tutorials.git"
92
93
+ # Configure LFS to use the correct endpoint
94
git config lfs.url "https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/Lightning-AI/lightning-tutorials.git/info/lfs"
95
git config credential.helper store
96
0 commit comments