Skip to content

Commit 2086e8d

Browse files
committed
fix: remove indexing actions
1 parent 651df51 commit 2086e8d

File tree

2 files changed

+0
-49
lines changed

2 files changed

+0
-49
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -168,21 +168,6 @@ jobs:
168168
doc-artifact-name: HTML-doc-ansys-dpf-core.zip
169169
decompress-artifact: true
170170

171-
doc-index-dev:
172-
name: "Deploy dev index docs"
173-
runs-on: ubuntu-latest
174-
needs: upload-development-docs
175-
steps:
176-
- name: "Deploy the latest documentation index"
177-
uses: ansys/actions/doc-deploy-index@v8
178-
with:
179-
cname: ${{ env.DOCUMENTATION_CNAME }}/version/dev
180-
index-name: pydpf-core-vdev
181-
host-url: ${{ vars.MEILISEARCH_HOST_URL }}
182-
api-key: ${{ env.MEILISEARCH_API_KEY }}
183-
doc-artifact-name: HTML-doc-ansys-dpf-core.zip
184-
decompress-artifact: true
185-
186171
examples:
187172
if: startsWith(github.head_ref, 'master') || github.event.action == 'ready_for_review' || !github.event.pull_request.draft
188173
uses: ./.github/workflows/examples.yml

.github/workflows/releaser.yml

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -96,40 +96,6 @@ jobs:
9696
doc-artifact-name: HTML-doc-ansys-dpf-core.zip
9797
decompress-artifact: true
9898

99-
doc-index-stable:
100-
name: "Deploy stable docs index"
101-
runs-on: ubuntu-latest
102-
needs: upload_docs_release
103-
steps:
104-
- name: "Install Git and clone project"
105-
uses: actions/checkout@v4
106-
with:
107-
ref: ${{ github.event.inputs.checkout_ref || '' }}
108-
109-
- name: "Install the package requirements"
110-
run: |
111-
python3 -m venv .venv
112-
.venv/bin/python -m pip install -e .
113-
114-
- name: "Get the version to PyMeilisearch"
115-
run: |
116-
VERSION=$(.venv/bin/python -c "from ansys.dpf.core import __version__; print('.'.join(__version__.split('.')[:2]))")
117-
VERSION_MEILI=$(.venv/bin/python -c "from ansys.dpf.core import __version__; print('-'.join(__version__.split('.')[:2]))")
118-
echo "Calculated VERSION: $VERSION"
119-
echo "Calculated VERSION_MEILI: $VERSION_MEILI"
120-
echo "VERSION=$VERSION" >> $GITHUB_ENV
121-
echo "VERSION_MEILI=$VERSION_MEILI" >> $GITHUB_ENV
122-
123-
- name: "Deploy the latest documentation index"
124-
uses: ansys/actions/doc-deploy-index@v8
125-
with:
126-
cname: ${{ env.DOCUMENTATION_CNAME }}/version/${{ env.VERSION }}
127-
index-name: pydpf-core-v${{ env.VERSION_MEILI }}
128-
host-url: ${{ vars.MEILISEARCH_HOST_URL }}
129-
api-key: ${{ env.MEILISEARCH_API_KEY }}
130-
doc-artifact-name: HTML-doc-ansys-dpf-core.zip
131-
decompress-artifact: true
132-
13399
update_ansys_lab_examples:
134100
uses: ./.github/workflows/ansys_lab.yml
135101
needs: get_latest_tag

0 commit comments

Comments
 (0)