Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
8 changes: 7 additions & 1 deletion .github/workflows/deploy-pages-public.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,16 @@ jobs:
- name: Setup Pages
uses: actions/configure-pages@v6

- name: Assemble public site
run: |
mkdir -p _site/assets/showcase
cp -R github-pages/. _site/
cp assets/readme/*.webp _site/assets/showcase/

- name: Upload project explainer
uses: actions/upload-pages-artifact@v5
with:
path: ./github-pages
path: ./_site

- name: Deploy to GitHub Pages
id: deployment
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ jobs:
- name: Install dependencies
run: npm ci

- name: Install Firebase release tooling
run: npm install --global firebase-tools@15.22.0

- name: Install datum normalizer
run: python -m pip install -r scripts/ground-datum-requirements.txt

Expand Down
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,19 @@ public/
*.log
progress.md

# Internal development records are kept outside public release branches.
docs/*AUDIT*.md
docs/*HANDOFF*.md
docs/*RND*.md
docs/*PLAN*.md
docs/*IMPLEMENTATION_REPORT*.md
docs/DATA_AND_PROVENANCE.md
docs/PERSISTENCE_AND_TRUST.md
docs/PRODUCT_CAPABILITIES.md
docs/REGRESSION_LEDGER.md
docs/TEST_AND_RELEASE_MAP.md
docs/VERIFICATION_STRATEGY*.md

# Local env/param files
.env
.env.*
Expand Down
Loading
Loading