Set up GitHub Pages deployment#13
Draft
idindrakusuma wants to merge 1 commit into
Draft
Conversation
Add a GitHub Actions workflow that publishes the repository as a static site on GitHub Pages on every push to main. Include a .nojekyll file so assets are served as-is, a landing page linking the asset collections, and README instructions for the one-time Pages source setting. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Eoi55yFM76CuMw8EbCHBhn
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.
Summary
Sets up GitHub Pages so this asset repository is served as a static site over HTTPS, with each file reachable by its path.
Changes
.github/workflows/deploy-pages.yml— GitHub Actions workflow that deploys the whole repository as a Pages artifact on every push tomain(and on manualworkflow_dispatch). Uses the officialconfigure-pages/upload-pages-artifact/deploy-pagesactions with the requiredpages: write+id-token: writepermissions and apagesconcurrency group..nojekyll— disables Jekyll processing so all assets (including any file/folder that would otherwise be filtered) are served as-is.index.html— lightweight landing page linking the four asset collections (invitato.net,invitato.id,logo-vendor,qr-apps); light/dark aware, no external dependencies.README.md— documents the deployment and the one-time setup step.One-time setup required
In Settings → Pages, set Source to GitHub Actions. After that, pushes to
maindeploy automatically. Once live, assets are available athttps://<owner>.github.io/<repo>/<path>, e.g./logo-vendor/Glow.png.Notes
main, so deployment begins once this PR is merged.🤖 Generated with Claude Code
https://claude.ai/code/session_01Eoi55yFM76CuMw8EbCHBhn
Generated by Claude Code