Skip to content

Commit

Permalink
Try different variable referencing
Browse files Browse the repository at this point in the history
  • Loading branch information
podhrmic committed Jun 12, 2024
1 parent 165f656 commit 9e1f59d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ on:
env:
CERBERUS_IMAGE_NAME: cerberus:release
OPENSUT_BASE_IMAGE_NAME: opensut-base:latest
CERBERUS_IMAGE_ID: ghcr.io/${{ github.repository_owner }}/${CERBERUS_IMAGE_NAME}
OPENSUT_BASE_IMAGE_ID: ghcr.io/${{ github.repository_owner }}/${OPENSUT_BASE_IMAGE_NAME}
CERBERUS_IMAGE_ID: ghcr.io/${{ github.repository_owner }}/${{vars.CERBERUS_IMAGE_NAME}}
OPENSUT_BASE_IMAGE_ID: ghcr.io/${{ github.repository_owner }}/${{vars.OPENSUT_BASE_IMAGE_NAME}}

jobs:

Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
password: ${{ secrets.VERSE_OPENSUT_ACCESS_TOKEN }}
- name: Build the Docker image
run: |
echo "Building $CERBERUS_IMAGE_ID"
echo "Building ${{env.CERBERUS_IMAGE_ID}}"
cd src/cerberus
make -f Makefile_docker release
docker tag cerberus:release $CERBERUS_IMAGE_ID
Expand Down

0 comments on commit 9e1f59d

Please sign in to comment.