Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Deploy docs

on:
pull_request:
branches: [ main ]
types: [ closed ]
paths:
- "docs/**"

jobs:
trigger_docs_website_deploy:
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true
steps:
- uses: actions/checkout@v5
with:
# Check out the merge commit on the base branch
ref: ${{ github.event.pull_request.merge_commit_sha }}
- name: Send trigger for remote website deploy
env:
DOCS_REPO_TOKEN: ${{ secrets.DOCS_REPO_TOKEN }}
run: |
set -euo pipefail
curl -sS -L --fail-with-body \
-X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${DOCS_REPO_TOKEN}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/ozontech/seq-db-docs/dispatches \
-d '{"event_type":"dispatch-event"}'
2 changes: 1 addition & 1 deletion docs/en/01-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Welcome to the seq-db quickstart guide! In just a few minutes, you'll learn how

### Single node mode

Before launch you need to create config file:
Before launch you need to create a config file:

config.yaml:

Expand Down
2 changes: 1 addition & 1 deletion docs/en/05-seq-ql.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ The language supports the following symbols:
- `*` — replaces any number of characters.

These symbols can be used to search within tokens or parts of tokens.
For example, a query on the [keyword](03-index-types.md#keyword) index `source_type:access*` will match all documents starting
For example, a query on the [keyword](03-index-types.md) index `source_type:access*` will match all documents starting
with `access`.

## Filter `range`
Expand Down
2 changes: 1 addition & 1 deletion docs/en/12-architecture.md → docs/en/13-architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Because the dataset is stored in these three file types, moving or restoring a
shard is straightforward: simply `cp` / `rsync` the directory
to the target node and start the pod.

Read more about file types and their internal structure [here](./internal/fractions.md).
Read more about file types and their internal structure [here](internal/fractions.md).

#### Durability
A write operation is acknowledged only after the payload is safely persisted:
Expand Down
Loading