Skip to content

Commit

Permalink
fix(cicd): Fix external env interpolation
Browse files Browse the repository at this point in the history
  • Loading branch information
nezort11 committed Jan 4, 2025
1 parent 0a71574 commit 328dac8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:

- name: Build, tag, and push image to Yandex Cloud Container Registry
env:
CR_REGISTRY: $REGISTRY_ID
CR_REPOSITORY: $CONTAINER_NAME
CR_REGISTRY: ${{ env.REGISTRY_ID }}
CR_REPOSITORY: ${{ env.CONTAINER_NAME }}
IMAGE_TAG: ${{ github.sha }}
run: |
docker build -t cr.yandex/$CR_REGISTRY/$CR_REPOSITORY:$IMAGE_TAG .
Expand Down

0 comments on commit 328dac8

Please sign in to comment.