From fa49b32fe272500b2779275ec6abc79e31ce2e0c Mon Sep 17 00:00:00 2001 From: Sebastian Rollen Date: Thu, 9 Dec 2021 12:44:33 -0500 Subject: [PATCH] ci: fix tag name release --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 393fe7a..563b6e7 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -64,7 +64,7 @@ jobs: ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} ECR_REPOSITORY: alpaca-data-relay DOCKER_BUILDKIT: 1 - IMAGE_TAG: ${{ github.event.release.name }} + IMAGE_TAG: ${{ github.event.release.tag_name }} run: | docker build --ssh default -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG . docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG