We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 733471a commit 5727caaCopy full SHA for 5727caa
.github/workflows/docs-pages.yaml
@@ -5,7 +5,7 @@ name: "Docs / Publish"
5
on:
6
push:
7
branches:
8
- - scylla-3.x
+ - scylla-4.x
9
- 'scylla-**'
10
paths:
11
- 'docs/**'
@@ -18,6 +18,10 @@ on:
18
jobs:
19
release:
20
runs-on: ubuntu-latest
21
+ concurrency:
22
+ group: single
23
+ cancel-in-progress: true
24
+
25
steps:
26
- name: Checkout
27
uses: actions/checkout@v4
@@ -36,10 +40,13 @@ jobs:
36
40
distribution: 'temurin'
37
41
- name: Set up env
38
42
run: make -C docs setupenv
43
39
44
- name: Build redirects
45
run: make -C docs redirects
46
47
- name: Build docs
48
run: make -C docs multiversion
49
50
- name: Deploy docs to GitHub Pages
51
run: ./docs/_utils/deploy.sh
52
env:
0 commit comments