homolog #1

Merged
luis merged 22 commits from homolog into main 2026-01-12 14:55:39 -05:00
3 changed files with 4 additions and 2 deletions
Showing only changes of commit a3021a545c - Show all commits

View File

@@ -14,7 +14,6 @@ jobs:
- name: Build e Push - name: Build e Push
run: | run: |
# Usando o SHA do commit para manter o histórico no Harbor
TAG=${{ gitea.sha }} TAG=${{ gitea.sha }}
docker build -t 172.35.0.216/library/vendaweb-api:$TAG . docker build -t 172.35.0.216/library/vendaweb-api:$TAG .
docker tag 172.35.0.216/library/vendaweb-api:$TAG 172.35.0.216/library/vendaweb-api:latest docker tag 172.35.0.216/library/vendaweb-api:$TAG 172.35.0.216/library/vendaweb-api:latest

3
.gitignore vendored
View File

@@ -33,3 +33,6 @@ lerna-debug.log*
!.vscode/launch.json !.vscode/launch.json
!.vscode/extensions.json !.vscode/extensions.json
# Environment variables
.env

View File

@@ -14,7 +14,7 @@ export class AppController {
@Get('health') @Get('health')
@ApiOperation({ summary: 'Health check' }) @ApiOperation({ summary: 'Health check' })
healthCheck() { healthCheck() {
return { status: 'ok' }; return { status: 'ok v2' };
} }
} }