Skip to content

Commit 7c0ffa7

Browse files
committed
update 251
1 parent 446ff2b commit 7c0ffa7

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/ci_cd.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ env:
3535
DOCUMENTATION_CNAME: mechanical.docs.pyansys.com
3636
MAIN_PYTHON_VERSION: '3.10'
3737
# DEV_REVN & its Docker image are used in scheduled or registry package runs
38-
DEV_REVN: '242'
39-
DEV_DOCKER_IMAGE_VERSION: '24.2_candidate'
38+
DEV_REVN: '251'
39+
DEV_DOCKER_IMAGE_VERSION: '25.1_candidate'
4040
MEILISEARCH_API_KEY: ${{ secrets.MEILISEARCH_API_KEY }}
4141
MEILISEARCH_HOST_URL: ${{ vars.MEILISEARCH_HOST_URL }}
4242
MEILISEARCH_PUBLIC_API_KEY: ${{ secrets.MEILISEARCH_PUBLIC_API_KEY }}
@@ -116,11 +116,11 @@ jobs:
116116
- id: save-versions
117117
run: |
118118
if ${{ github.event_name == 'schedule' }}; then
119-
# 242
120-
echo "test_revn=${{ inputs.mech_revn }}" >> $GITHUB_OUTPUT
119+
# 251
120+
echo "test_revn=${{ env.DEV_REVN}}" >> $GITHUB_OUTPUT
121121
# ghcr.io/ansys/mechanical:24.2_candidate
122122
echo "test_container=${{ env.DOCKER_PACKAGE }}:${{ env.DEV_DOCKER_IMAGE_VERSION }}" >> $GITHUB_OUTPUT
123-
# 24.2_candidate
123+
# 25.1_candidate
124124
echo "test_docker_image_version=${{ env.DEV_DOCKER_IMAGE_VERSION }}" >> $GITHUB_OUTPUT
125125
else
126126
if [[ -z "${{inputs.revn}}" ]]; then
@@ -129,7 +129,7 @@ jobs:
129129
export mech_revn=${{inputs.revn}}
130130
fi
131131
export mech_image_version=${mech_revn:0:2}.${mech_revn:2}.0
132-
echo "test_revn=${{ env.LATEST_STABLE_REVN }}" >> $GITHUB_OUTPUT
132+
echo "test_revn=$mech_revn" >> $GITHUB_OUTPUT
133133
# ghcr.io/ansys/mechanical:24.1.0
134134
echo "test_container=${{ env.DOCKER_PACKAGE }}:$mech_image_version" >> $GITHUB_OUTPUT
135135
# 24.1.0
@@ -147,7 +147,7 @@ jobs:
147147
- id: set-matrix
148148
run: |
149149
# Run all stable mechanical versions release tags
150-
# For nightly scheduled runs use pre-release (242_candidate)
150+
# For nightly scheduled runs use pre-release (25.1_candidate)
151151
# For pull requests and merges use latest stable version (241)
152152
if ${{ github.event_name == 'push' }} && ${{ contains(github.ref, 'refs/tags') }}; then
153153
echo "matrix={\"mechanical-version\":['23.1.0', '23.2.0', '24.1.0'],\"experimental\":[false]}" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)