1
0
mirror of https://gitlab.nic.cz/turris/reforis/foris-js.git synced 2024-07-02 20:30:27 +00:00

Merge branch '5-versioning' into 'dev'

Changed beta versioning procedure

Closes #5

See merge request turris/reforis/foris-js!21
This commit is contained in:
Maciej Lenartowicz 2019-10-11 08:25:06 +00:00
commit 2429f4662c
2 changed files with 3 additions and 2 deletions

View File

@ -6,7 +6,7 @@
Each commit to `dev` branch will result in publishing a new version of library
tagged `beta`. Versions names are based on commit SHA, e.g.
`foris@0.1.0-d9073aa4.0`.
`foris@0.1.0-beta.d9073aa4`.
### Preparing a release

View File

@ -10,7 +10,8 @@ else
echo "unsafe-perm = true" >> ~/.npmrc
if test "$1" = "beta"
then
npm version prerelease --preid=$CI_COMMIT_SHORT_SHA --git-tag-version false
BETA_VERSION=$(npx -c 'echo "$npm_package_version"')-beta.$CI_COMMIT_SHORT_SHA
npm version $BETA_VERSION --git-tag-version false
npm publish --tag beta
elif test "$1" = "latest"
then