From 8a66616085e83169544994205ce16e764cf7e541 Mon Sep 17 00:00:00 2001 From: Bruno Rodrigues Date: Mon, 13 May 2024 23:16:54 +0100 Subject: [PATCH] chore: fix type on deploy github action --- .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 cdc0424..5958580 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -22,7 +22,7 @@ jobs: - name: Build and push Docker image run: | docker build -t $PROJECT --build-arg PROJECT=server . - docker tag whatsapp-newsletter:latest $DOCKER_REPO:latest + docker tag $PROJECT:latest $DOCKER_REPO:latest docker login -u $DOCKER_USERNAME -p ${{secrets.DOCKER_TOEKEN}} docker push $DOCKER_REPO:latest - name: SSH into EC2 instance and deploy