fix(workflow): update node.yaml to correctly copy .env file to deployment location

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2025-04-19 01:09:16 -03:00
parent f4f76f3743
commit 10294c9a82

View file

@ -25,9 +25,9 @@ jobs:
- name: Copy files to deployment location
run: |
sudo cp /opt/gbo/bin/BotServer/.env .
sudo rm -rf /opt/gbo/bin/BotServer
sudo cp -r ./* /opt/gbo/bin/BotServer/
sudo cp -r ./* /opt/gbo/bin/BotServer
sudo cp /opt/gbo/conf.d/bot/.env /opt/gbo/bin/BotServer
- name: Install production dependencies in deployment location
run: |