13 Commits
draft ... v2026

Author SHA1 Message Date
8e2b68b404 Merge pull request #21 from anthonyscorrea/release-candidate
All checks were successful
CI - Docs build check / build-check (push) Successful in 19s
Build & publish / publish (push) Successful in 20s
2026 release
2026-05-02 11:48:36 -05:00
f31952883e Remove mention of build.sh from README
Remove production build script from README.
2026-05-02 11:46:31 -05:00
8153a64321 Delete tools/build.sh 2026-05-02 11:44:33 -05:00
8d05411339 Merge branch 'draft' into release-candidate 2026-04-30 18:09:52 -05:00
6143d0fdd9 build 2024-06-06 06:42:14 -05:00
e34297f200 update publish date 2024-06-06 06:35:10 -05:00
ae31a90185 DR using last out
Addresses #13
2024-06-06 06:33:37 -05:00
89e0973c27 postponing games in extraordinary circumstances.
address #10
2024-06-06 06:33:37 -05:00
6d7d0531ce removed "extraordinary circumstances", add "not resumed"
this doesn't really apply, as the league does not resume suspended games in the regular season.
2024-01-19 15:19:29 -06:00
2b29a561da update readme with github pages instructions 2024-01-19 14:49:32 -06:00
9a3939f42e update metadata date 2024-01-19 14:20:46 -06:00
063f66fc6b clarify 'no game' and slaughter rule
address issue #9
2024-01-19 13:44:27 -06:00
8c91733d65 move uniform to correct section
address issue #11
remove "Uniform" from section "Team Rosters; Players and Eligibility; Uniforms"
"Uniform" subsection stays in "Teams and Managers" section
Add "Player Uniforms" reference to "Uniform" subsection in "General Play"
2024-01-19 13:44:26 -06:00
2 changed files with 0 additions and 16 deletions

View File

@@ -14,7 +14,6 @@ This repository contains the governing documents for the Chicago Metropolitan Ba
- `docs/03-playing-rules.md`: playing rules
- `mkdocs/mkdocs.yml`: MkDocs site configuration
- `mkdocs/requirements.txt`: Python packages required to build the site
- `tools/build.sh`: production build script
- `tools/spellcheck/`: CSpell configuration and custom baseball dictionary
## Local Development

View File

@@ -1,15 +0,0 @@
#!/bin/bash
set -euo pipefail
MKDOCS_STRICT="${MKDOCS_STRICT:-true}"
TMPDIR="${RUNNER_TEMP:-$TMPDIR}"
OUTPUT_DIR="${OUTPUT_DIR:-${TMPDIR}/dist/}"
# OFFLINE="${OFFLINE:-false}" # This doesn't seem to do anything, set by mkdocs.yml
MKDOCS_CONFIG="${MKDOCS_CONFIG:-mkdocs/mkdocs.yml}"
STRICT_FLAG=""
if [ "${MKDOCS_STRICT}" = "true" ]; then
STRICT_FLAG="--strict"
fi
mkdocs build ${STRICT_FLAG} -f $MKDOCS_CONFIG -d $OUTPUT_DIR