We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38def64 commit 02720e5Copy full SHA for 02720e5
1 file changed
.github/workflows/pages-deploy.yml
@@ -10,17 +10,13 @@ jobs:
10
runs-on: ubuntu-latest
11
12
steps:
13
- # Configure Git to use personal access token for private submodules
14
- - name: Configure Git for private submodules
15
- run: |
16
- git config --global url."https://${{ secrets.HORSEL_ACCESS }}:@github.com/".insteadOf "https://github.com/"
17
-
18
- # Checkout the repository and all submodules
19
- - name: Checkout repository
+ # Checkout the repository and all submodules with PAT
+ - name: Checkout repository with private submodules
20
uses: actions/checkout@v3
21
with:
22
- submodules: true
23
- fetch-depth: 0 # ensures full history if needed
+ submodules: recursive
+ token: ${{ secrets.HORSEL_ACCESS }}
+ fetch-depth: 0
24
25
# Deploy site to main branch
26
- name: Deploy to GitHub Pages
0 commit comments