From 6ddc5a459964ec8dfe99eed59e768fe78a15c3bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Rebours?= Date: Tue, 18 May 2021 16:21:33 +0200 Subject: [PATCH] publish --access public --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2d842ca..55aa97d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -32,6 +32,6 @@ deploy: stage: deploy script: - if (npx semver $CI_COMMIT_TAG --range '>0.0.0'); then NPM_TAG=latest; else NPM_TAG=beta; fi; # Using the fact that semver by default considers that pre-releases do not respect stable ranges - - npm publish --tag=$NPM_TAG + - npm publish --tag=$NPM_TAG --access public only: - tags