Skip to content

Commit

Permalink
fix: dev deployments 3
Browse files Browse the repository at this point in the history
  • Loading branch information
tamalCodes committed Oct 18, 2024
1 parent 6998a2e commit 7abd106
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/production-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: 📢 Deploy to Dev

env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID_DEV }}

on:
workflow_dispatch:
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ app.use(passport.session());
app.use(express.static(path.join(__dirname, "public")));

app.get("/", (req, res) => {
res.send("HELLO FROM API HOME");
res.send("HELLO FROM API");
});

app.use("/user", require("./routes/user/User"));
Expand Down

0 comments on commit 7abd106

Please sign in to comment.