Skip to content

Commit 622c42c

Browse files
Group Manual > Core topics
1 parent fda3d8d commit 622c42c

2 files changed

Lines changed: 45 additions & 38 deletions

File tree

.github/workflows/publish-docs-gp-pages.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@ jobs:
4747
chmod +x ./build-doc.sh
4848
./build-doc.sh
4949
50-
# 5. Checkout gh-pages branch
50+
# 5. Checkout doc-view branch
5151
- name: Checkout GH pages branch
5252
uses: actions/checkout@v4
5353
with:
54-
ref: gh-pages
55-
path: gh-pages
54+
ref: doc-view
55+
path: doc-view
5656

5757
- name: Copy and version documentation
58-
working-directory: gh-pages
58+
working-directory: doc-view
5959
run: |
6060
git config --global user.email "gha@cassandra.apache.org"
6161
git config --global user.name "GHA for Apache Cassandra Website"
@@ -66,7 +66,7 @@ jobs:
6666
# update links to contain version prefix
6767
mike deploy --update-aliases $release_version
6868
# copy documentation web page folder
69-
cd ../gh-pages
69+
cd ../doc-view
7070
cp -r ../java-driver/docs ./
7171
rm -rf $release_version
7272
mv docs $release_version
@@ -85,17 +85,17 @@ jobs:
8585
echo "release_version=$release_version" >> "$GITHUB_ENV"
8686
8787
- name: Commit and push documentation
88-
working-directory: gh-pages
88+
working-directory: doc-view
8989
run: |
9090
git config --global user.email "gha@cassandra.apache.org"
9191
git config --global user.name "GHA for Apache Cassandra Website"
9292
9393
git add .
9494
9595
if git diff --cached --quiet; then
96-
echo "No changes to push to gh-pages"
96+
echo "No changes to push to doc-view"
9797
exit 0
9898
fi
9999
100100
git commit -m "Update generated docs for release ${release_version}"
101-
git push origin gh-pages
101+
git push origin doc-view

mkdocs.yml

Lines changed: 37 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -40,47 +40,54 @@ nav:
4040
- Configuration:
4141
- Overview: manual/core/configuration/README.md
4242
- Reference: manual/core/configuration/reference/README.md
43-
- Authentication: manual/core/authentication/README.md
44-
- SSL: manual/core/ssl/README.md
45-
- Load Balancing: manual/core/load_balancing/README.md
46-
- Pooling: manual/core/pooling/README.md
47-
- Reconnection: manual/core/reconnection/README.md
48-
- Retries: manual/core/retries/README.md
49-
- Speculative Execution: manual/core/speculative_execution/README.md
50-
- Metrics: manual/core/metrics/README.md
51-
- Logging: manual/core/logging/README.md
43+
- Connection Management:
44+
- Authentication: manual/core/authentication/README.md
45+
- SSL: manual/core/ssl/README.md
46+
- Pooling: manual/core/pooling/README.md
47+
- Load Balancing: manual/core/load_balancing/README.md
48+
- Reconnection: manual/core/reconnection/README.md
49+
- Address Resolution: manual/core/address_resolution/README.md
5250
- Statements:
5351
- Overview: manual/core/statements/README.md
5452
- Batch: manual/core/statements/batch/README.md
5553
- Per Query Keyspace: manual/core/statements/per_query_keyspace/README.md
5654
- Prepared: manual/core/statements/prepared/README.md
5755
- Simple: manual/core/statements/simple/README.md
58-
- Paging: manual/core/paging/README.md
59-
- Async Programming: manual/core/async/README.md
60-
- Reactive Streams: manual/core/reactive/README.md
61-
- Custom Codecs: manual/core/custom_codecs/README.md
62-
- Temporal Types: manual/core/temporal_types/README.md
63-
- Tuples: manual/core/tuples/README.md
64-
- UDTs: manual/core/udts/README.md
65-
- Compression: manual/core/compression/README.md
66-
- Address Resolution: manual/core/address_resolution/README.md
67-
- Request Tracker: manual/core/request_tracker/README.md
68-
- Request ID: manual/core/request_id/README.md
69-
- Throttling: manual/core/throttling/README.md
70-
- Tracing: manual/core/tracing/README.md
71-
- Performance: manual/core/performance/README.md
56+
- Query Execution:
57+
- Retries: manual/core/retries/README.md
58+
- Idempotence: manual/core/idempotence/README.md
59+
- Speculative Execution: manual/core/speculative_execution/README.md
60+
- Paging: manual/core/paging/README.md
61+
- Query Timestamps: manual/core/query_timestamps/README.md
62+
- Advanced Types:
63+
- Custom Codecs: manual/core/custom_codecs/README.md
64+
- Temporal Types: manual/core/temporal_types/README.md
65+
- Tuples: manual/core/tuples/README.md
66+
- UDTs: manual/core/udts/README.md
67+
- Detachable Types: manual/core/detachable_types/README.md
68+
- Non-blocking:
69+
- Overview: manual/core/non_blocking/README.md
70+
- Async Programming: manual/core/async/README.md
71+
- Reactive Streams: manual/core/reactive/README.md
72+
- Observability:
73+
- Request Tracker: manual/core/request_tracker/README.md
74+
- Request ID: manual/core/request_id/README.md
75+
- Metrics: manual/core/metrics/README.md
76+
- Logging: manual/core/logging/README.md
77+
- Tracing: manual/core/tracing/README.md
78+
- Performance:
79+
- Overview: manual/core/performance/README.md
80+
- Throttling: manual/core/throttling/README.md
81+
- Compression: manual/core/compression/README.md
7282
- Metadata:
7383
- Overview: manual/core/metadata/README.md
7484
- Node: manual/core/metadata/node/README.md
7585
- Schema: manual/core/metadata/schema/README.md
7686
- Token: manual/core/metadata/token/README.md
77-
- Control Connection: manual/core/control_connection/README.md
78-
- Native Protocol: manual/core/native_protocol/README.md
79-
- Non-blocking: manual/core/non_blocking/README.md
80-
- Query Timestamps: manual/core/query_timestamps/README.md
81-
- Idempotence: manual/core/idempotence/README.md
82-
- Detachable Types: manual/core/detachable_types/README.md
83-
- DSE:
87+
- Driver Internals:
88+
- Control Connection: manual/core/control_connection/README.md
89+
- Native Protocol: manual/core/native_protocol/README.md
90+
- DataStax DSE:
8491
- Overview: manual/core/dse/README.md
8592
- Geotypes: manual/core/dse/geotypes/README.md
8693
- Graph:

0 commit comments

Comments
 (0)