From c12a411608e4081883cdf3dd2b6018b7d8ef01c4 Mon Sep 17 00:00:00 2001 From: Thore Cimbal Date: Fri, 31 Jul 2026 22:22:17 +0200 Subject: [PATCH] ci: npm publish braucht explizites --tag fuer Prerelease-Versionen Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01PKhFj1S3UdD6xL2fbWPeYj --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a3952cf3..0b7a0b50 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -62,4 +62,6 @@ publish_npm: //rohana.axion1337.de/api/packages/sorb/npm/:_authToken=${GITEA_NPM_TOKEN} EOF - cd embedded/web - - npm publish --access public + # --tag latest explizit: npm verweigert Prerelease-Versionen (x.y.z-threadnet.N) + # sonst komplett; latest entspricht dem bisherigen Konsum-Verhalten + - npm publish --access public --tag latest