Skip to content

Commit b0df8d5

Browse files
ci(site): fix base urls (#195)
1 parent d486e96 commit b0df8d5

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/jekyll-build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,14 +171,16 @@ jobs:
171171

172172
- name: Setup CI config
173173
run: |
174-
echo "---" > _config_ci.yml
175-
echo "baseurl: ${{ steps.configure-pages.outputs.base_url }}" >> _config_ci.yml
174+
config_file="_config_ci.yml"
175+
echo "---" > $config_file
176+
echo "baseurl: ${{ steps.configure-pages.outputs.base_path }}" >> $config_file
176177
177-
cat _config_ci.yml
178+
cat $config_file
178179
179180
- name: Build site
180181
env:
181182
JEKYLL_ENV: production
183+
JEKYLL_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
182184
PAGES_REPO_NWO: ${{ github.repository }}
183185
run: |
184186
# if inputs.config_file exists

0 commit comments

Comments
 (0)