Skip to content

Commit

Permalink
syntax fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dipinknair committed Apr 18, 2024
1 parent b8ea2b7 commit e3ea967
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci_cd_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
run: |
echo "major=${{ env.DEV_MAJOR_REV }}" >> $GITHUB_OUTPUT
echo "minor=${{ env.DEV_MINOR_REV }}" >> $GITHUB_OUTPUT
echo "dev_docker_image_version=ghcr.io/ansys/mechanical:${{ env.DEV_DOCKER_IMAGE_VERSION }} >> $GITHUB_OUTPUT
echo "dev_docker_image_version=ghcr.io/ansys/mechanical:${{ env.DEV_DOCKER_IMAGE_VERSION }}" >> $GITHUB_OUTPUT
- name: Login in Github Container registry
uses: docker/login-action@v3
Expand All @@ -59,7 +59,7 @@ jobs:
- name: Pull, launch & display info
id: capture_info
run: |
IMAGE_NAME=${{ needs.saving-image-versions.outputs.dev_docker_image_version }}
IMAGE_NAME=${{ steps.save-versions.outputs.dev_docker_image_version }}
docker pull $IMAGE_NAME
BUILD_DATE=$(docker run --rm --entrypoint head $IMAGE_NAME -n 1 /install/ansys_inc/v${{ env.DEV_REVN }}/aisol/CommonFiles/builddate.txt)
PUSHED_AT=$(docker inspect --format='{{.Created}}' $IMAGE_NAME)
Expand Down

0 comments on commit e3ea967

Please sign in to comment.