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 d486e96 commit b0df8d5Copy full SHA for b0df8d5
.github/workflows/jekyll-build.yml
@@ -171,14 +171,16 @@ jobs:
171
172
- name: Setup CI config
173
run: |
174
- echo "---" > _config_ci.yml
175
- echo "baseurl: ${{ steps.configure-pages.outputs.base_url }}" >> _config_ci.yml
+ config_file="_config_ci.yml"
+ echo "---" > $config_file
176
+ echo "baseurl: ${{ steps.configure-pages.outputs.base_path }}" >> $config_file
177
- cat _config_ci.yml
178
+ cat $config_file
179
180
- name: Build site
181
env:
182
JEKYLL_ENV: production
183
+ JEKYLL_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
184
PAGES_REPO_NWO: ${{ github.repository }}
185
186
# if inputs.config_file exists
0 commit comments