diff --git a/.gitea/workflows/deploy-api.yaml b/.gitea/workflows/deploy-api.yaml index 13d84a4..c00aea6 100644 --- a/.gitea/workflows/deploy-api.yaml +++ b/.gitea/workflows/deploy-api.yaml @@ -23,9 +23,10 @@ jobs: - name: Deploy run: | + sleep 10 curl -X POST http://172.35.0.216:9000/api/webhooks/182007f4-06d9-48fc-ab68-885fb434765c # LEGADO Deploy via SSH (Mantenha se precisar rodar comandos extras como migrations) # - name: Deploy Automático via SSH # uses: https://github.com/appleboy/ssh-action@master - # ... (seu código atual) \ No newline at end of file + # ... \ No newline at end of file diff --git a/src/app.service.ts b/src/app.service.ts index 123a9e4..4c79c04 100644 --- a/src/app.service.ts +++ b/src/app.service.ts @@ -3,6 +3,6 @@ import { Injectable } from '@nestjs/common'; @Injectable() export class AppService { getHello(): string { - return 'Hello World! API Online via Swarm'; + return 'Hello World! webhook'; } }