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 7d99567
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci_cd_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ env:
DEV_REVN: 242
DEV_MAJOR_REV: 24
DEV_MINOR_REV: 2
DEV_DOCKER_IMAGE_VERSION: '24.2.0_candidate'
DEV_DOCKER_IMAGE_VERSION: '24.2_candidate'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand All @@ -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 7d99567

Please sign in to comment.