We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8a4a17 commit 2cbac54Copy full SHA for 2cbac54
1 file changed
.github/workflows/pages-deploy.yml
@@ -10,15 +10,18 @@ jobs:
10
runs-on: ubuntu-latest
11
12
steps:
13
+ # Inject PAT 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 repository and all submodules
19
- name: Checkout repository
20
uses: actions/checkout@v3
21
with:
- submodules: true
22
+ submodules: recursive
23
24
+ # Deploy to GitHub Pages
25
- name: Deploy to GitHub Pages
26
uses: peaceiris/actions-gh-pages@v4
27
0 commit comments