28 Commits

Author SHA1 Message Date
4dd5e308cf update to deploy-rc
Some checks failed
CI - Docs build check / build-check (push) Successful in 8s
Deploy RC preview to GitHub Pages / deploy-rc-pages (push) Failing after 8s
2026-02-05 08:41:17 -06:00
15be04dac7 try rc build
All checks were successful
CI - Docs build check / build-check (push) Successful in 8s
Deploy RC preview to GitHub Pages / deploy-rc-pages (push) Successful in 6s
2026-02-04 18:58:08 -06:00
45da756495 ci (spellcheck, build) 2026-02-04 18:11:22 -06:00
9de000a16d flesh out miscellaneous and dissolution 2026-01-24 18:03:39 -06:00
8af1ab6058 flesh out treasurer and secretary 2026-01-24 18:03:13 -06:00
042abe9f98 remove commissioner power 2026-01-24 18:02:46 -06:00
25a43fe684 capitalization fix 2026-01-24 18:02:26 -06:00
c4d61f1a44 by-laws => Bylaws 2026-01-24 18:02:06 -06:00
b1776e0e39 typo 2026-01-24 18:00:47 -06:00
ac9d5374e9 amend purpose to include members 2026-01-24 18:00:00 -06:00
4913421231 add powers, limitations, office and agent 2026-01-24 17:59:11 -06:00
e1a827cfa1 update spellcheck to use cspell 2026-01-24 17:56:47 -06:00
e9d6761121 split bylaws and policy 2026-01-24 17:10:10 -06:00
51896e9e28 from melanie 2026-01-24 16:17:30 -06:00
dff99c0dc3 from tony 2026-01-24 14:48:18 -06:00
35238a60f3 budget section, unify on "dues" 2026-01-22 09:41:25 -08:00
fbc5061e4a restructure officers, unify on "Commissioner" 2026-01-22 09:41:25 -08:00
1d5d15c6b3 Add directors 2026-01-22 09:41:25 -08:00
0b893a5d8e simplify member standing and voting 2026-01-22 09:41:25 -08:00
9faeba6b7a section -> provision 2026-01-22 09:41:25 -08:00
b96bc44f47 clarify membership. formalize "Manager" 2026-01-22 09:41:25 -08:00
8d619fdc13 amend purpose 2026-01-22 09:41:25 -08:00
cceacae86f Update name section, unify to "League" 2026-01-22 09:41:24 -08:00
cbb9b211b5 promote name and purpose to sections 2026-01-22 07:42:16 -08:00
f21b4efe4a move assets, styles to docs folder 2026-01-22 07:42:11 -08:00
376369f49b implement mkdocs, remove pandoc 2026-01-22 07:29:59 -08:00
fabb2c69fd moved general play section to new document as playing rules 2026-01-22 06:35:06 -08:00
97486f02e1 initial restructuring
directory restructuring, remove makefile and build files in repo
2026-01-20 12:24:27 -06:00
7 changed files with 98 additions and 146 deletions

View File

@@ -1,26 +1,19 @@
name: CI - Docs build check
on:
push:
branches:
- main
- develop
- release-candidate
pull_request:
branches-ignore:
- gh-pages
push:
workflow_dispatch:
permissions:
contents: read
env:
MKDOCS_STRICT: ${{ vars.MKDOCS_STRICT || 'true' }}
MKDOCS_CONFIG: mkdocs/mkdocs.yml
MKDOCS_OFFLINE: false
CSPELL_CONFIG: tools/spellcheck/cspell.yml
CSPELL_TARGETS: docs/**/*.md README.md
jobs:
build-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
@@ -34,8 +27,9 @@ jobs:
run: |
set -euo pipefail
npx --yes cspell \
--config ${CSPELL_CONFIG} \
${CSPELL_TARGETS}
--config tools/spellcheck/cspell.yml \
"docs/**/*.md" \
README.md
- name: Install build dependencies
run: |
@@ -43,15 +37,8 @@ jobs:
pip install -r mkdocs/requirements.txt
- name: MkDocs build (strict default)
run: |
set -euo pipefail
echo "Strict is set to ${MKDOCS_STRICT}"
FLAGS=()
if [ "${MKDOCS_STRICT}" = "true" ]; then
FLAGS+=(--strict)
fi
MKDOCS_OUTPUT_DIR="${RUNNER_TEMP:-${TMPDIR:-/tmp}}/dist"
mkdocs build "${FLAGS[@]}" -f "${MKDOCS_CONFIG}" -d "${MKDOCS_OUTPUT_DIR}"
# Default not strict on if unset
export MKDOCS_STRICT="${MKDOCS_STRICT:-true}"
tools/build.sh --config mkdocs/mkdocs.yml

76
.github/workflows/deploy-rc-pages.yml vendored Normal file
View File

@@ -0,0 +1,76 @@
name: Deploy RC preview to GitHub Pages
on:
push:
tags: ["rc*"]
workflow_dispatch:
permissions:
contents: write
jobs:
deploy-rc-pages:
runs-on: ubuntu-latest
steps:
- name: Checkout (tag)
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
set -euo pipefail
pip install -r mkdocs/requirements.txt
- name: Build site (strict default)
run: |
set -euo pipefail
export MKDOCS_STRICT="${MKDOCS_STRICT:-true}"
export TMPDIR="${RUNNER_TEMP:-$TMPDIR}"
export OUTPUT_DIR="${OUTPUT_DIR:-${TMPDIR}/dist/}"
tools/build.sh --config mkdocs/mkdocs.yml
- name: Checkout gh-pages branch
run: |
set -euo pipefail
git fetch origin gh-pages:gh-pages || true
if git show-ref --verify --quiet refs/heads/gh-pages; then
git switch gh-pages
else
git switch --orphan gh-pages
rm -rf ./*
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git commit --allow-empty -m "Initialize gh-pages"
fi
- name: Publish RC preview under /rc/<tag>/
run: |
export TMPDIR="${RUNNER_TEMP:-$TMPDIR}"
export OUTPUT_DIR="${OUTPUT_DIR:-${TMPDIR}/dist/}"
set -euo pipefail
rm -rf "rc"* || true
mkdir -p "rc/"
cp -a "$OUTPUT_DIR/." "rc/"
git add -A
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git commit -m "Deploy RC preview ${REF}" || echo "No changes to commit"
git push origin gh-pages
- name: Publish prerelease (GitHub)
uses: softprops/action-gh-release@v2
with:
prerelease: true
body: |
RC preview: https://<org>.github.io/<repo>/rc/
Tag: ${{ github.ref_name }}
Commit: ${{ github.sha }}

View File

@@ -1,114 +0,0 @@
name: Build & publish docs (rc + release)
on:
push:
tags:
- "rc*"
- "v*"
workflow_dispatch:
permissions:
contents: write
env:
MKDOCS_CONFIG: mkdocs/mkdocs.yml
MKDOCS_STRICT: ${{ vars.MKDOCS_STRICT || 'true' }}
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout (tag)
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install deps
run: |
set -euo pipefail
pip install -r mkdocs/requirements.txt
- name: Build docs (normal + offline, strict gate)
run: |
set -euo pipefail
FLAGS=()
if [ "${MKDOCS_STRICT}" = "true" ]; then
FLAGS+=(--strict)
fi
OUT_BASE="${RUNNER_TEMP}/mkdocs_out"
SITE="${OUT_BASE}/site"
SITE_OFFLINE="${OUT_BASE}/site_offline/${GITHUB_REF_NAME}"
rm -rf "${OUT_BASE}"
mkdir -p "${SITE}" "${SITE_OFFLINE}"
mkdocs build "${FLAGS[@]}" -f "${MKDOCS_CONFIG}" -d "${SITE}"
OFFLINE=true mkdocs build "${FLAGS[@]}" -f "${MKDOCS_CONFIG}" -d "${SITE_OFFLINE}"
- name: Zip offline site
run: |
set -euo pipefail
cd "${RUNNER_TEMP}/mkdocs_out/site_offline/"
zip -r "${GITHUB_REF_NAME}.zip" ./${GITHUB_REF_NAME}
- name: Publish prerelease
if: startsWith(github.ref_name, 'rc')
uses: softprops/action-gh-release@v2
with:
prerelease: true
name: ${{ github.ref_name }}
tag_name: ${{ github.ref_name }}
body: |
Release candidate preview.
files: |
${{ runner.temp }}/mkdocs_out/site_offline/${{ github.ref_name }}.zip
- name: Publish release
if: startsWith(github.ref_name, 'v')
uses: softprops/action-gh-release@v2
with:
name: ${{ github.ref_name }}
tag_name: ${{ github.ref_name }}
files: |
${{ runner.temp }}/mkdocs_out/site_offline/${{ github.ref_name }}.zip
- name: Checkout gh-pages branch
uses: actions/checkout@v4
with:
ref: gh-pages
fetch-depth: 0
- name: Deploy release to gh-pages root
if: startsWith(github.ref_name, 'v')
run: |
set -euo pipefail
rm -rf ./*
cp -a ${RUNNER_TEMP}/mkdocs_out/site/. .
git add -A
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git commit -m "Deploy release ${GITHUB_REF_NAME}" || echo "No changes to commit"
git push origin gh-pages
- name: Deploy RC preview to /rc/
if: startsWith(github.ref_name, 'rc')
run: |
set -euo pipefail
rm -rf rc
mkdir -p rc
cp -a ${RUNNER_TEMP}/mkdocs_out/site/. rc/
printf '{"tag":"%s"}\n' "${GITHUB_REF_NAME}" > rc/rc.json
git add -A
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git commit -m "Deploy RC preview ${GITHUB_REF_NAME}" || echo "No changes to commit"
git push origin gh-pages

View File

@@ -1,5 +1,5 @@
<p align="center">
<img src="docs/assets/cmba-logo.svg" width="200">
<img src="assets/cmba-logo.svg" width="200">
</p>
# CMBA Constitution and Bylaws

View File

@@ -1 +1,3 @@
# CMBA Constitution and By-Laws
# CMBA Rulebooks
Use the navigation to view the documents.

5
metadata.yml Normal file
View File

@@ -0,0 +1,5 @@
---
title: Chicago Metropolitan Baseball Association
subtitle: Constitution and By-Laws
date: 2024-06-06
---

View File

@@ -1,4 +1,4 @@
site_name: CMBA Constitution and By-Laws
site_name: CMBA Rulebook
docs_dir: ../docs
# Prevent accidental publishing of repo/CI/dev clutter
@@ -36,8 +36,4 @@ plugins:
- enumerate-headings:
toc_depth: 2
exclude:
- index.md
validation:
links:
anchors: warn #this defaults to info, but it will cause broken links in anchor headers
- index.md