Skip to content

Commit

Permalink
Fix YAML syntax error in .github/workflows/jekyll.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cr7pt0gr4ph7 committed Jan 5, 2024
1 parent ad6fd06 commit caeb717
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/jekyll.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ jobs:
uses: actions/configure-pages@v4
- name: Setup tokens
shell: bash
run: echo "google_site_verification: ${{ secrets.GOOGLE_SITE_VERIFICATION }}" > _config_temp.yml
run: |
echo "google_site_verification: ${{ secrets.GOOGLE_SITE_VERIFICATION }}" > _config_temp.yml
- name: Build with Jekyll
# Outputs to the './_site' directory by default
run: bundle exec jekyll build --config _config.yml,_config_temp.yml --baseurl "${{ steps.pages.outputs.base_path }}"
Expand Down

0 comments on commit caeb717

Please sign in to comment.