Skip to content

Commit 9ecbd58

Browse files
fix(ci): empty environment variable (#844)
Co-authored-by: pyansys-ci-bot <[email protected]>
1 parent f80fd21 commit 9ecbd58

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.github/workflows/ci_cd_night.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,7 @@ jobs:
204204
echo "image=${image_name}" >> "${GITHUB_OUTPUT}"
205205
206206
- name: "Start the container from the desired image"
207+
id: container
207208
env:
208209
STK_IMAGE: ${{ steps.docker.outputs.image }}
209210
LICENSE_SERVER: ${{ secrets.LICENSE_SERVER }}
@@ -216,6 +217,9 @@ jobs:
216217
--volume ${PWD}:/home/stk/pystk \
217218
"${STK_IMAGE}"
218219
220+
container_name=$(docker ps --latest --format "{{.Names}}")
221+
echo "name=${container_name}" >> "${GITHUB_OUTPUT}"
222+
219223
- name: "Install the project with the testing dependencies"
220224
env:
221225
STK_CONTAINER: ${{ steps.container.outputs.name }}

doc/source/changelog/844.fixed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Empty environment variable

0 commit comments

Comments
 (0)