fix(dynamic-workforce): document the verified live read-path for a Wo… #29
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build base zips | |
| on: | |
| push: | |
| tags: | |
| - "v*" | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build a zip per course folder | |
| run: | | |
| mkdir -p dist | |
| for d in */ ; do | |
| name="${d%/}" | |
| # worked-examples/ holds full reference solutions, not bare bases; never zip it | |
| case "$name" in worked-examples) continue ;; esac | |
| [ -f "$name/AGENTS.md" ] || continue | |
| zip -rX "dist/${name}-base.zip" "$name" -x '*.DS_Store' | |
| done | |
| ls -lh dist/ | |
| - name: Publish release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: dist/*.zip | |
| body: | | |
| Per-course bare bases for the Manufacturing track. Download the zip for your course and open it in your coding agent. |