Skip to content

Commit 8f2f95c

Browse files
committed
fix: Update release workflow to use consolidated build system
- Changed from build-spec.sh to build.sh in release workflow - Updated step name and initial validation message - Fixes release workflow failure where old build script was not found This should allow v3.2.0 release to complete successfully with the consolidated build system.
1 parent b3563cd commit 8f2f95c

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -188,15 +188,14 @@ jobs:
188188
- name: Build HTML documentation
189189
working-directory: drafts/current/specifications
190190
run: |
191-
echo "🏗️ Building release HTML documentation..."
192-
chmod +x build-spec.sh
193-
./build-spec.sh
191+
echo "🏗️ Building release documentation with consolidated build system..."
192+
chmod +x build.sh
193+
./build.sh
194194
195-
- name: Generate PDF documentation
195+
- name: Validate documentation generation
196196
working-directory: drafts/current/specifications
197-
shell: bash
198197
run: |
199-
set +e # Don't exit on LaTeX warnings
198+
echo "🔍 Validating consolidated build system output..."
200199
201200
echo "📄 Generating PDF documentation..."
202201

0 commit comments

Comments
 (0)