From d2522e8368551cccabde6bc9b2525752e766d5a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Valverd=C3=A9?= Date: Fri, 29 Dec 2023 03:34:29 +0100 Subject: [PATCH] Debug --- .drone.jsonnet | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index 0b6f96f..d7786f5 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -22,7 +22,7 @@ local lint_step = { local build_step = { name: "build", image: bun_image, - commands: ["bun run build"], + commands: ["bun run build", "ls -la"], }; local publish_step = { @@ -34,9 +34,10 @@ local publish_step = { }, commands: [ - "npm set registry https://git.jvalver.de/api/packages/thilawyn/npm/", - "npm config set -- //git.jvalver.de/api/packages/thilawyn/npm/:_authToken $NPM_TOKEN", - "npm publish", + "ls -la", + // "npm set registry https://git.jvalver.de/api/packages/thilawyn/npm/", + // "npm config set -- //git.jvalver.de/api/packages/thilawyn/npm/:_authToken $NPM_TOKEN", + // "npm publish", ], };