diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index e24feb0..53e9154 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -23,7 +23,7 @@ jobs: env: ECR_REGISTRY: ${{ steps.login-aws-ecr.outputs.registry }} ECR_REPOSITORY: ${{secrets.API_IMAGE_REPO}} - IMAGE_TAG: latest + IMAGE_TAG: v1 run: | docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG ./api docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG @@ -47,7 +47,7 @@ jobs: env: ECR_REGISTRY: ${{ steps.login-aws-ecr.outputs.registry }} ECR_REPOSITORY: ${{secrets.FRONTEND_IMAGE_REPO}} - IMAGE_TAG: latest + IMAGE_TAG: v1 run: | docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG ./frontend docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG diff --git a/.gitignore b/.gitignore index 8e1a9c3..82d573a 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -k8s/ \ No newline at end of file +k8s/ +todo/ \ No newline at end of file