Skip to content

Commit

Permalink
remove beta from release ci
Browse files Browse the repository at this point in the history
  • Loading branch information
t2t2 committed Apr 17, 2024
1 parent e140104 commit ee269ea
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,7 @@ release_npm:
script:
# release to NPM
- echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > ~/.npmrc
# January: remove --tag beta
- for f in artifacts/*.tgz; do npm publish --tag beta ./$f; done;
- for f in artifacts/*.tgz; do npm publish ./$f; done;
- rm -f ~/.npmrc

release_github:
Expand All @@ -107,8 +106,7 @@ release_github:
- sudo apt install gh

# release in Github
# January: remove --prerelease
- gh release create v${CI_COMMIT_REF_NAME:1} ./artifacts/* --prerelease --target $CI_COMMIT_SHA --repo $GITHUB_REPOSITORY
- gh release create v${CI_COMMIT_REF_NAME:1} ./artifacts/* --target $CI_COMMIT_SHA --repo $GITHUB_REPOSITORY

release_cdn:
artifacts:
Expand Down

0 comments on commit ee269ea

Please sign in to comment.