Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.mdns.eu/nextcloud/passwords-client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius David Wieschollek <passwords.public@mdns.eu>2024-01-01 20:37:57 +0300
committerMarius David Wieschollek <passwords.public@mdns.eu>2024-01-01 20:37:57 +0300
commit6e716981adeeade0a71414dbc445870614902a91 (patch)
tree8d6778ebd459ae3188e757318993d31de560a92a /.gitlab-ci.yml
parent183b9668fb9a38e578839fac96ca920205b44506 (diff)
Add legacy implementation compatibility layer
Signed-off-by: Marius David Wieschollek <passwords.public@mdns.eu>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 13703dd..2d808d8 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -6,7 +6,7 @@ image: node:13-alpine
Publish Alpha:
stage: publishing
script:
- - sed -i -e "s|.BUILD|-alpha.${CI_PIPELINE_ID}|g" ./package.json
+ - sed -i -e "s|-alpha1000|-alpha.${CI_PIPELINE_ID}|g" ./package.json
- npm publish --tag alpha
environment:
name: Alpha
@@ -16,7 +16,7 @@ Publish Alpha:
Publish Beta:
stage: publishing
script:
- - sed -i -e "s|.BUILD|-beta.${CI_PIPELINE_ID}|g" ./package.json
+ - sed -i -e "s|-alpha1000|-beta.${CI_PIPELINE_ID}|g" ./package.json
- npm publish --tag beta
environment:
name: Beta
@@ -26,7 +26,7 @@ Publish Beta:
Publish Release:
stage: publishing
script:
- - sed -i -e "s|.BUILD||g" ./package.json
+ - sed -i -e "s|-alpha1000||g" ./package.json
- npm publish --tag latest
environment:
name: Stable