Skip to content
Merged
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
9 changes: 8 additions & 1 deletion .github/workflows/docs-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: "Docs / Publish"
on:
push:
branches:
- scylla-3.x
- scylla-4.x
- 'scylla-**'
paths:
- 'docs/**'
Expand All @@ -18,6 +18,10 @@ on:
jobs:
release:
runs-on: ubuntu-latest
concurrency:
group: single
cancel-in-progress: true

steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -36,10 +40,13 @@ jobs:
distribution: 'temurin'
- name: Set up env
run: make -C docs setupenv

- name: Build redirects
run: make -C docs redirects

- name: Build docs
run: make -C docs multiversion

- name: Deploy docs to GitHub Pages
run: ./docs/_utils/deploy.sh
env:
Expand Down
Loading