Skip to content

Commit fe68db9

Browse files
committed
chore: updated ci config
1 parent 655e557 commit fe68db9

5 files changed

Lines changed: 5 additions & 10 deletions

File tree

.github/workflows/deploy-api.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,4 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Trigger Render Deploy
14-
uses: johnnymanz/github-render-deploy@v1.0.0
15-
with:
16-
service-id: ${{ secrets.RENDER_API_SERVICE_ID }}
17-
api-key: ${{ secrets.RENDER_API_KEY }}
14+
run: curl -X POST ${{ secrets.RENDER_API_DEPLOY_HOOK }}

.github/workflows/deploy-frontend.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,5 @@ jobs:
2020
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }}
2121
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID }}
2222
vercel-args: '--prod'
23+
github-token: ${{ secrets.GITHUB_TOKEN }}
2324
github-deployment-outcall: true

.github/workflows/deploy-worker.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,4 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Trigger Render Deploy
14-
uses: johnnymanz/github-render-deploy@v1.0.0
15-
with:
16-
service-id: ${{ secrets.RENDER_WORKER_SERVICE_ID }}
17-
api-key: ${{ secrets.RENDER_API_KEY }}
14+
run: curl -X POST ${{ secrets.RENDER_WORKER_DEPLOY_HOOK }}

apps/api/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ const app = createApp();
55
const PORT = env.PORT || "5000";
66

77
app.listen(PORT, () => {
8-
console.log(`[server]: API Service is running on port ${PORT}`);
8+
console.log(`[server]: API Service running on port ${PORT}`);
99
});

apps/web/app/(main)/project-invite/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import PageClient from "./page-client";
33

44
export const metadata = {
55
title: "Project Invite",
6-
description: "project invite",
6+
description: "Project Invite",
77
};
88

99
function Page() {

0 commit comments

Comments
 (0)