Update README.md
Browse files
README.md
CHANGED
|
@@ -92,8 +92,37 @@ Artifacts:
|
|
| 92 |
- `PUBKEY_PIN.txt` contains the pinned pubkey hash
|
| 93 |
- `operator_ed25519_public.pem` provides the demo public key used for signing
|
| 94 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 95 |
---
|
| 96 |
|
|
|
|
| 97 |
## How to fetch this repo by revision
|
| 98 |
|
| 99 |
```python
|
|
|
|
| 92 |
- `PUBKEY_PIN.txt` contains the pinned pubkey hash
|
| 93 |
- `operator_ed25519_public.pem` provides the demo public key used for signing
|
| 94 |
|
| 95 |
+
|
| 96 |
+
---
|
| 97 |
+
|
| 98 |
+
## Offline package (ZIP + .loko payload)
|
| 99 |
+
|
| 100 |
+
This repo also publishes a single Windows zip that contains:
|
| 101 |
+
- the two `.loko` payloads (Run A + Run B)
|
| 102 |
+
- their `.loko.sha256` receipts
|
| 103 |
+
- a lightweight verifier script
|
| 104 |
+
- `sha256.txt` for the zip contents
|
| 105 |
+
- `RUNME.txt`
|
| 106 |
+
|
| 107 |
+
Download:
|
| 108 |
+
- `ReleaseGate_win.zip`
|
| 109 |
+
- `ReleaseGate_win.zip.sha256`
|
| 110 |
+
|
| 111 |
+
### Windows (PowerShell)
|
| 112 |
+
|
| 113 |
+
```powershell
|
| 114 |
+
Expand-Archive .\ReleaseGate_win.zip -DestinationPath .\ReleaseGate -Force
|
| 115 |
+
|
| 116 |
+
# Verify Run A
|
| 117 |
+
python .\ReleaseGate\bin\verify_release_gate_loko.py --loko .\ReleaseGate\incoming\run-a-baseline-repro.loko --out .\REVIEW_run_a --pubkey-pin 1f61014bc8bf5bedc9389c5950d9a46c703c8d91701d762b892fd1a924dcd367
|
| 118 |
+
|
| 119 |
+
# Verify Run B
|
| 120 |
+
python .\ReleaseGate\bin\verify_release_gate_loko.py --loko .\ReleaseGate\incoming\run-b-production-gate.loko --out .\REVIEW_run_b --pubkey-pin 1f61014bc8bf5bedc9389c5950d9a46c703c8d91701d762b892fd1a924dcd367
|
| 121 |
+
|
| 122 |
+
|
| 123 |
---
|
| 124 |
|
| 125 |
+
|
| 126 |
## How to fetch this repo by revision
|
| 127 |
|
| 128 |
```python
|