Skip to content

Commit 28772ef

Browse files
authored
Avoid running dev docs with 24.1 (#1990)
1 parent 429a37f commit 28772ef

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

.github/workflows/nightly-dev-doc-build.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,6 @@ env:
1818
jobs:
1919
build_dev_docs:
2020
runs-on: [self-hosted, pyfluent]
21-
strategy:
22-
fail-fast: false
23-
matrix:
24-
image-tag: [v23.2.0, v24.1.0]
2521

2622
steps:
2723
- uses: actions/checkout@v3
@@ -49,17 +45,17 @@ jobs:
4945
- name: Pull Fluent docker image
5046
run: make docker-pull
5147
env:
52-
FLUENT_IMAGE_TAG: ${{ matrix.image-tag }}
48+
FLUENT_IMAGE_TAG: ${{ env.DOC_DEPLOYMENT_IMAGE_TAG }}
5349

5450
- name: Run API codegen
5551
run: make api-codegen
5652
env:
57-
FLUENT_IMAGE_TAG: ${{ matrix.image-tag }}
53+
FLUENT_IMAGE_TAG: ${{ env.DOC_DEPLOYMENT_IMAGE_TAG }}
5854

5955
- name: Build All Documentation
6056
run: make build-all-docs
6157
env:
62-
FLUENT_IMAGE_TAG: ${{ matrix.image-tag }}
58+
FLUENT_IMAGE_TAG: ${{ env.DOC_DEPLOYMENT_IMAGE_TAG }}
6359

6460
- name: Zip HTML Documentation before upload
6561
run: |

0 commit comments

Comments
 (0)