Skip to content

Commit

Permalink
fix: action pipe
Browse files Browse the repository at this point in the history
  • Loading branch information
vishakh-abhayan committed Nov 15, 2024
1 parent cab7fe2 commit 0c83843
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ jobs:

- name: Create .env file
run: |
echo "GROQ_API_KEY=${{ secrets.secrets.GROQ_API_KEY }}" > .env
echo "PORT=${{ secrets.secrets.PORT }}" >> .env
echo "GROQ_API_KEY=${{ secrets.secrets}}" > .env
- name: Sync code to application directory
run: |
Expand All @@ -34,6 +33,7 @@ jobs:
--exclude '.gitignore' \
--exclude 'README.md' \
--exclude '.github' \
--exclude 'logs' \
./ /home/muhammedr7025/server
- name: Install dependencies in app directory
Expand Down
4 changes: 2 additions & 2 deletions ecosystem.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ module.exports = {
env_file: ".env",
merge_logs: true,
cwd: "/home/muhammedr7025/server",
error_file: "/home/muhammedr7025/logs/err.log",
out_file: "/home/muhammedr7025/logs/out.log",
error_file: "/home/muhammedr7025/server/logs/err.log",
out_file: "/home/muhammedr7025/server/logs/out.log",
log_date_format: "YYYY-MM-DD HH:mm:ss Z",
source_map_support: true,
instance_var: "INSTANCE_ID",
Expand Down

0 comments on commit 0c83843

Please sign in to comment.