Skip to content

Commit

Permalink
Use context in definition of REGISTRY_IMAGE_TAG
Browse files Browse the repository at this point in the history
  • Loading branch information
lecriste committed Nov 25, 2024
1 parent 26852ec commit ba2a257
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/on_tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:

deploy_docker_image:
env:
REGISTRY_IMAGE_TAG: $GITHUB_REF_NAME
CI_REGISTRY_IMAGE: bluebrain/bbp-atlas-pipeline
REGISTRY_IMAGE_TAG: ${{ vars.GITHUB_REF_NAME }}
runs-on: ubuntu-latest
steps:
- name: Check out code
Expand All @@ -47,4 +47,4 @@ jobs:
uses: docker/build-push-action@v6
with:
push: true
tags: bluebrain/bbp-atlas-pipeline:${{ env.REGISTRY_IMAGE_TAG }}
tags: $CI_REGISTRY_IMAGE:${{ env.REGISTRY_IMAGE_TAG }}

0 comments on commit ba2a257

Please sign in to comment.