From 0517726ebc4e4e4ac3c4fe76c820b5e7de512f55 Mon Sep 17 00:00:00 2001 From: siwonpada Date: Sun, 10 Mar 2024 03:01:54 +0900 Subject: [PATCH] modify grammar error --- .github/workflows/staging.yml | 2 +- src/app.module.ts | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/staging.yml b/.github/workflows/staging.yml index 8533f0d..82bb752 100644 --- a/.github/workflows/staging.yml +++ b/.github/workflows/staging.yml @@ -64,7 +64,7 @@ jobs: ECR_REPOSITORY: ${{ needs.build.outputs.ECR_REPOSITORY }} IMAGE_TAG: ${{ needs.build.outputs.IMAGE_TAG }} run: | - sed -i "s|image:.*|image: $ECR_REGISTRY\/$ECR_REPOSITORY:$IMAGE_TAG|g" infoteam/service/ziggle/stg.yaml + sed -i "s|image:.*|image: $ECR_REGISTRY\/$ECR_REPOSITORY:$IMAGE_TAG|g" infoteam/service/vapor/auth-stg.yaml - name: Commit and Push env: diff --git a/src/app.module.ts b/src/app.module.ts index 8455ac1..7be57d4 100644 --- a/src/app.module.ts +++ b/src/app.module.ts @@ -2,7 +2,6 @@ import { Module } from '@nestjs/common'; import { AppController } from './app.controller'; import { ConfigModule } from '@nestjs/config'; import { GroupModule } from './group/group.module'; -import { MemberModule } from './member/member.module'; import { UserModule } from './user/user.module'; import { RoleModule } from './role/role.module'; @@ -12,7 +11,6 @@ import { RoleModule } from './role/role.module'; envFilePath: '.env', }), GroupModule, - MemberModule, UserModule, RoleModule, ],