You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add configurable CTAN repository with validation and version detection
Allow manual workflow runs to specify CTAN mirror via workflow_dispatch input.
Validate repository accessibility and detect TeX Live version before build starts.
Include repository URL and version in release notes for tracking yearly updates.
This will help with situation like #50 were some mirrors may not be updated
Copy file name to clipboardExpand all lines: .github/workflows/build.yaml
+72-4Lines changed: 72 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,11 @@
1
1
on:
2
2
workflow_dispatch:
3
+
inputs:
4
+
ctan_repo:
5
+
description: 'CTAN repository URL (e.g., https://ctan.math.illinois.edu/systems/texlive/tlnet). See https://ctan.org/mirrors/mirmon for available mirrors.'
0 commit comments