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
# Workflow-internal hand-off to the release job; the
142
158
# release itself carries the long-lived copy of the zip.
143
159
retention-days: 7
160
+
- name: Upload book PDF workflow artifact
161
+
uses: actions/upload-artifact@v4
162
+
with:
163
+
name: twinbasic-docs-book-pdf
164
+
path: ./docs/_pdf/book.pdf
144
165
145
166
# Deployment job
146
167
deploy:
@@ -173,6 +194,10 @@ jobs:
173
194
uses: actions/download-artifact@v4
174
195
with:
175
196
name: twinbasic-docs-offline-zip
197
+
- name: Download book PDF workflow artifact
198
+
uses: actions/download-artifact@v4
199
+
with:
200
+
name: twinbasic-docs-book-pdf
176
201
- name: Compute release tag and name
177
202
id: tag
178
203
env:
@@ -198,7 +223,11 @@ jobs:
198
223
199
224
**Offline copy:** download `twinbasic-docs-offline.zip`, extract anywhere, and open `index.html` in any browser — no server required. URLs, navigation, dark mode, and search all work over `file://`.
200
225
226
+
**PDF book:** download `book.pdf` for an offline-readable, printable copy of the full reference.
0 commit comments