Debug
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
Julien Valverdé
2023-12-29 03:34:29 +01:00
parent fda96c3de2
commit d2522e8368

View File

@@ -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",
],
};