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 4f2b77f commit 09cddfdCopy full SHA for 09cddfd
.github/workflows/build-gh-pages.yml
@@ -34,15 +34,23 @@ jobs:
34
token: ${{ secrets.GHE_PAT }}
35
github-server-url: https://github.tools.sap
36
ref: 'main'
37
+ sparse-checkout: |
38
+ redirect_index.html
39
+ redirect_404.html
40
+ assets/
41
+ sparse-checkout-cone-mode: true
42
+ - name: Prepare site folder
43
+ run: |
44
+ mkdir site
45
+ mv redirect_index.html site/index.html
46
+ mv redirect_404.html site/404.html
47
+ mv assets site/
48
- name: Setup Pages
49
uses: actions/configure-pages@v5
- - name: Build with Jekyll
- uses: actions/jekyll-build-pages@v1
- with:
- source: ./
- destination: ./_site
50
- name: Upload artifact
51
uses: actions/upload-pages-artifact@v3
52
+ with:
53
+ path: site
54
55
# Deployment job
56
deploy:
0 commit comments