Fixed?
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:58:39 +01:00
parent db13a1ee0d
commit 2ccdb7184f
3 changed files with 8 additions and 6 deletions

View File

@@ -22,7 +22,7 @@ local lint_step = {
local build_step = {
name: "build",
image: bun_image,
commands: ["bun run build", "ls -la dist"],
commands: ["bun run build"],
};
local publish_step = {
@@ -34,10 +34,9 @@ local publish_step = {
},
commands: [
"ls -la dist",
// "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",
"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",
],
};