Skip to content

Commit

Permalink
docs: update theme 1.2
Browse files Browse the repository at this point in the history
docs: update dynamic slug

Add back index.md

Move custom slug to a separate PR

Fix typo
  • Loading branch information
dgarcia360 authored and avelanarius committed May 24, 2022
1 parent 89cb49a commit 8feeb20
Show file tree
Hide file tree
Showing 12 changed files with 174 additions and 265 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/docs-pages.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: "Docs / Publish"
# For more information,
# see https://sphinx-theme.scylladb.com/stable/deployment/production.html#available-workflows

on:
push:
branches:
- scylla-3.x
paths:
- 'docs/**'
- 'faq/**'
- 'manual/**'
- 'changelog/**'
- 'upgrade_guide/**'
workflow_dispatch:

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
persist-credentials: false
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.7
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Set up env
run: make -C docs setupenv
- name: Build docs
run: make -C docs multiversion
- name: Deploy docs to GitHub Pages
run: ./docs/_utils/deploy.sh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
37 changes: 0 additions & 37 deletions .github/workflows/docs-pages@v2.yaml

This file was deleted.

36 changes: 36 additions & 0 deletions .github/workflows/docs-pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: "Docs / Build PR"
# For more information,
# see https://sphinx-theme.scylladb.com/stable/deployment/production.html#available-workflows

on:
pull_request:
branches:
- scylla-3.x
paths:
- 'docs/**'
- 'faq/**'
- 'manual/**'
- 'changelog/**'
- 'upgrade_guide/**'

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
persist-credentials: false
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.7
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Set up env
run: make -C docs setupenv
- name: Build docs
run: make -C docs test
29 changes: 0 additions & 29 deletions .github/workflows/docs-pr@v1.yaml

This file was deleted.

17 changes: 17 additions & 0 deletions README-dev.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Building the docs

The docs build instructions have been tested with Sphinx 4 and Fedora 32.

## Prerequisites

To build and preview the docs locally, you will need to install the following software:

- Git
- Python 3.7
- pip
- Java JDK 8 or above
- Maven

## Commands

For more information, see [Commands](https://sphinx-theme.scylladb.com/stable/commands.html).
68 changes: 0 additions & 68 deletions README-dev.rst

This file was deleted.

67 changes: 0 additions & 67 deletions docs.yaml

This file was deleted.

Loading

0 comments on commit 8feeb20

Please sign in to comment.