We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b22d4f2 commit 9415e84Copy full SHA for 9415e84
.github/workflows/pages.yml
@@ -1,4 +1,5 @@
1
# .github/workflows/pages.yml
2
+
3
name: Build & Deploy Jekyll site to Pages
4
5
on:
@@ -29,10 +30,14 @@ jobs:
29
30
bundler-cache: true
31
32
- name: Configure Pages
33
+ id: pages
34
uses: actions/configure-pages@v3
35
36
- name: Build with Jekyll
- run: bundle exec jekyll build --destination _site
37
+ run: |
38
+ bundle exec jekyll build \
39
+ --destination _site \
40
+ --baseurl "${{ steps.pages.outputs.base_path }}"
41
env:
42
JEKYLL_ENV: production
43
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments