fix(GBMinService): await token.toJwt() for proper JWT generation
All checks were successful
GBCI / build (push) Successful in 31s

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2025-04-26 17:17:28 -03:00
parent 7f7397b192
commit b7f9c07faf
2 changed files with 3 additions and 4 deletions

View file

@ -27,16 +27,15 @@ jobs:
run: |
echo "[General Bots Deployer] Copying files to deploy location..."
sudo rm -rf /opt/gbo/bin/BotServer/dist
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: |
echo "[General Bots Deployer] Building BotServer..."
rm -rf /opt/gbo/bin/BotServer/node_modules
# rm -rf /opt/gbo/bin/BotServer/node_modules
cd /opt/gbo/bin/BotServer
sudo npm ci --production
# sudo npm ci --production
npm run build-server
# npm run build-gbui

View file

@ -605,7 +605,7 @@ export class GBMinService {
});
// 6. Return JWT
const jwt = token.toJwt();
const jwt = await token.toJwt();
res.json({ token: jwt });
} catch (err) {