Skip to content

Commit

Permalink
test CIs
Browse files Browse the repository at this point in the history
  • Loading branch information
Behzad-rabiei committed Oct 27, 2024
1 parent 6b3eebb commit 9795dee
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:

env:
REGISTRY: ghcr.io
IMAGE_NAME: discord/${{ inputs.app_name }}
IMAGE_NAME: ${{ github.repository }}/${{ inputs.app_name }}

jobs:
build-push:
Expand Down
2 changes: 1 addition & 1 deletion bot/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ async function app(): Promise<void> {
}

app().catch((error) => {
logger.fatal(error, 'Failed To start the application!!')
logger.fatal(error, 'Failed To start the application!')
})
2 changes: 1 addition & 1 deletion bot/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"experimentalDecorators": true,
"target": "ES2017",
"sourceMap": false,
"outDir": "./lib",
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"strict": true,
Expand Down
2 changes: 1 addition & 1 deletion hivemind-adapter/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ import { Logger } from 'nestjs-pino'
async function bootstrap() {
const app = await NestFactory.createApplicationContext(AppModule)
const logger = app.get(Logger)
logger.log('App is running...')
logger.log('App is running....')
}
bootstrap()

0 comments on commit 9795dee

Please sign in to comment.