Deployment Docs
This page documents the current production delivery path for the club site and docs.
Canonical Production URLs
https://hashpass.club- canonical club web app on GitHub Pageshttps://hashpass.club/documentation/- Docusaurus documentation on the same Pages artifacthttps://club.hashpass.tech- DNS alias that canonicalizes tohttps://hashpass.clubhttps://docs.hashpass.tech- DNS alias that canonicalizes tohttps://hashpass.club/documentation/
Deployment Model
The production site is published from a single GitHub Actions workflow:
apps/web-appbuilds the root site.apps/docsbuilds the documentation site under/documentation/.packages/infra/scripts/build-club-docs-site.shcombines both outputs into.site-artifacts/club-docs.actions/upload-pages-artifactandactions/deploy-pagespublish that artifact to GitHub Pages.
Route 53 handles the DNS layer:
hashpass.clubpoints at GitHub Pages using the GitHub Pages A and AAAA records.club.hashpass.techanddocs.hashpass.techare CNAME aliases to the canonical site.
The workflow lives in .github/workflows/deploy-club-docs.yml.
The docs build still uses HASHPASS_DOCS_URL=https://hashpass.club and HASHPASS_DOCS_BASE_URL=/documentation/ so all generated links are canonical on the production domain.
Releasing Club Page Changes
Public Club changes, including the landing-page hero, app-install call-to-action,
and Club documentation, are published by the club-v* tag workflow. The tag is
the deployment trigger; pushing a branch alone does not update GitHub Pages.
After the corresponding develop → main promotion PR has been approved and
merged, create the Club release from the resulting main commit:
pnpm run release:club:web:patch -- --notes "describe the Club-facing change"
This bumps the app-local Club version, creates and pushes a club-vX.Y.Z tag,
and starts deploy-club-docs.yml. Wait for both its build and Pages deployment
jobs to pass before considering https://hashpass.club updated. Do not create a
Club tag from an unmerged promotion branch: that would deploy unreviewed code.
Current References
archive/amplify/docs/AMPLIFY-API-ROUTES.md- legacy Amplify API route reference kept in the repository archive only../infra/env/ENVIRONMENT_VARIABLES.md- runtime variable matrix for mobile, club, and BSL releases
Notes
hashpass.clubis the canonical public URL.- DNS changes can take up to 24 hours to propagate.
- GitHub Pages custom domain settings must be configured in the repository settings before the DNS cutover is considered complete.
- Legacy SST club front door notes remain in
packages/infrafor historical reference. - Historical deployment notes and one-off incident writeups live in
archive/docs/.