NPM publish using Node container #4

Merged
Thilawyn merged 19 commits from npm-publish-fix into master 2023-12-29 04:27:34 +01:00
Showing only changes of commit d2522e8368 - Show all commits

View File

@@ -22,7 +22,7 @@ local lint_step = {
local build_step = { local build_step = {
name: "build", name: "build",
image: bun_image, image: bun_image,
commands: ["bun run build"], commands: ["bun run build", "ls -la"],
}; };
local publish_step = { local publish_step = {
@@ -34,9 +34,10 @@ local publish_step = {
}, },
commands: [ commands: [
"npm set registry https://git.jvalver.de/api/packages/thilawyn/npm/", "ls -la",
"npm config set -- //git.jvalver.de/api/packages/thilawyn/npm/:_authToken $NPM_TOKEN", // "npm set registry https://git.jvalver.de/api/packages/thilawyn/npm/",
"npm publish", // "npm config set -- //git.jvalver.de/api/packages/thilawyn/npm/:_authToken $NPM_TOKEN",
// "npm publish",
], ],
}; };