expression test
This commit is contained in:
parent
2cbb3c20ba
commit
945d478829
1 changed files with 15 additions and 1 deletions
|
@ -68,3 +68,17 @@ upload-release:
|
||||||
- cp README.md target/npm-build/mastodon_bot/
|
- cp README.md target/npm-build/mastodon_bot/
|
||||||
- npm version --no-git-tag-version $CI_COMMIT_TAG
|
- npm version --no-git-tag-version $CI_COMMIT_TAG
|
||||||
- npm publish ./target/npm-build/mastodon_bot --access public
|
- npm publish ./target/npm-build/mastodon_bot --access public
|
||||||
|
|
||||||
|
test-prerelease:
|
||||||
|
stage: test
|
||||||
|
rules:
|
||||||
|
- if: '$CI_COMMIT_BRANCH == "master" && $CI_COMMIT_TAG == ""'
|
||||||
|
script:
|
||||||
|
- echo $CI_COMMIT_TAG
|
||||||
|
|
||||||
|
test-release:
|
||||||
|
stage: test
|
||||||
|
rules:
|
||||||
|
- if: '$CI_COMMIT_BRANCH == "master" && $CI_COMMIT_TAG != ""'
|
||||||
|
script:
|
||||||
|
- echo $
|
||||||
|
|
Reference in a new issue