Skip to content

Fix Pages build source path in GitHub Actions build workflow - #20

Closed
TinasheMTapera with Copilot wants to merge 1 commit into
mainfrom
copilot/fix-github-actions-job-build
Closed

Fix Pages build source path in GitHub Actions build workflow#20
TinasheMTapera with Copilot wants to merge 1 commit into
mainfrom
copilot/fix-github-actions-job-build

Conversation

Copilot AI commented Aug 4, 2026

Copy link
Copy Markdown

The build GitHub Actions job failed because Jekyll was invoked with source: ./docs, but this repository does not contain a docs/ directory. This caused SCSS compilation to fail while resolving load paths under /github/workspace/docs.

  • Root cause

    • actions/jekyll-build-pages@v1 was configured with a non-existent source directory.
  • Workflow fix

    • Updated the Pages build configuration to point Jekyll at the actual site source directory (repository root), so asset and SCSS resolution run against existing paths.
  • Impact

    • Restores successful execution of the build job by aligning workflow configuration with repository layout.
# before
with:
  source: ./docs
  destination: ./docs/_site

# after
with:
  source: ./
  destination: ./_site

Copilot AI changed the title [WIP] Fix failing GitHub Actions job build Fix Pages build source path in GitHub Actions build workflow Aug 4, 2026
Copilot AI requested a review from TinasheMTapera August 4, 2026 23:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

Development

Successfully merging this pull request may close these issues.

2 participants