We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 963de03 commit 1bff568Copy full SHA for 1bff568
1 file changed
.github/workflows/pages-deploy.yml
@@ -10,9 +10,20 @@ jobs:
10
runs-on: ubuntu-latest
11
12
steps:
13
+ # Configure Git credentials for private submodules
14
+ - name: Configure Git to access private submodules
15
+ run: |
16
+ git config --global url."https://${{ secrets.HORSEL_ACCESS }}:@github.com/".insteadOf "https://github.com/"
17
+
18
# Checkout your repo and private submodules
19
- name: Checkout repository
20
uses: actions/checkout@v3
21
with:
22
submodules: true
- token: ${{ secrets.HORSEL_ACCESS }}
23
24
+ # Deploy to GitHub Pages
25
+ - name: Deploy to GitHub Pages
26
+ uses: peaceiris/actions-gh-pages@v6
27
+ with:
28
+ github_token: ${{ secrets.GITHUB_TOKEN }}
29
+ publish_dir: ./
0 commit comments