Conversation
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
|
Note Gemini is unable to generate a summary for this pull request due to the file types involved not being currently supported. |
Reviewer's GuideAdds a new GitHub Actions workflow to build a Jekyll site with preinstalled GitHub Pages dependencies and deploy it to GitHub Pages on pushes to main or manual dispatch. Sequence diagram for Jekyll site build and GitHub Pages deployment workflowsequenceDiagram
participant Dev as Developer
participant Repo as GitHub_Repository
participant Actions as GitHub_Actions_Workflow
participant Build as Job_build
participant Deploy as Job_deploy
participant Checkout as actions_checkout_v4
participant ConfigurePages as actions_configure_pages_v5
participant JekyllBuild as actions_jekyll_build_pages_v1
participant UploadArtifact as actions_upload_pages_artifact_v3
participant DeployPages as actions_deploy_pages_v4
participant Pages as GitHub_Pages
Dev->>Repo: Push commit to main
Repo-->>Actions: Trigger workflow (push to main)
activate Actions
Actions->>Build: Start build job (ubuntu-latest)
activate Build
Build->>Checkout: Run checkout step
Checkout-->>Build: Repository checked out
Build->>ConfigurePages: Configure Pages
ConfigurePages-->>Build: Pages configuration ready
Build->>JekyllBuild: Build Jekyll site (source ./, destination ./_site)
JekyllBuild-->>Build: Static site generated in _site
Build->>UploadArtifact: Upload Pages artifact
UploadArtifact-->>Build: Artifact stored for deployment
deactivate Build
Actions->>Deploy: Start deploy job (needs build)
activate Deploy
Deploy->>DeployPages: Deploy artifact to GitHub Pages
DeployPages-->>Pages: Publish site to GitHub Pages
DeployPages-->>Deploy: Output page_url
deactivate Deploy
Actions-->>Dev: Workflow completed with published site URL
Flow diagram for GitHub Actions Jekyll build and deploy jobsflowchart TD
A["Workflow triggers\n- push to main\n- workflow_dispatch"] --> B["Set GITHUB_TOKEN permissions\ncontents: read, pages: write, id-token: write"]
B --> C["Configure concurrency\nGroup: pages, cancel-in-progress: false"]
C --> D["Job build\nRuns-on: ubuntu-latest"]
D --> D1["Step: actions/checkout@v4"]
D1 --> D2["Step: actions/configure-pages@v5"]
D2 --> D3["Step: actions/jekyll-build-pages@v1\nsource: ./, destination: ./_site"]
D3 --> D4["Step: actions/upload-pages-artifact@v3"]
D4 --> E["Job deploy\nRuns-on: ubuntu-latest\nEnvironment: github-pages"]
E --> E1["Step: actions/deploy-pages@v4\nuses artifact from build\noutputs: page_url"]
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
✅ Snyk checks have passed. No issues have been found so far.
💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse. |
This was
linked to
issues
Dec 10, 2025
Dargon789
pushed a commit
that referenced
this pull request
Apr 14, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly:
Fixes #<issue_number_goes_here> 🦕
Summary by Sourcery
CI: