This repository has been archived on 2023-06-20. You can view files and clone it, but cannot push or open issues or pull requests.
risk-dice-modifier/.gitlab-ci.yml

86 lines
1.9 KiB
YAML
Raw Normal View History

2021-02-07 16:01:14 +01:00
image: node:latest
stages:
- prepare
2021-02-07 16:03:35 +01:00
- test
2021-02-07 16:01:14 +01:00
- build
- release
cache: &global_cache
key:
files:
- package-lock.json
policy: pull
paths:
- node_modules/
install-dependencies:
stage: prepare
script:
- npm install
cache:
<<: *global_cache
policy: pull-push
lint:
stage: test
script:
- npm run lint
cache:
<<: *global_cache
build:
stage: build
script:
- npm run build
2021-02-07 19:49:23 +01:00
- mv dist risk-dice-modifier
2021-02-07 16:01:14 +01:00
cache:
<<: *global_cache
artifacts:
paths:
- risk-dice-modifier
2021-02-07 16:01:14 +01:00
expire_in: 1 week
.release-template: &release-template
stage: release
before_script:
- apt update
- apt install --yes jq
- REPOSITORY_URL=$(echo "${CI_REPOSITORY_URL}" | sed -e "s|gitlab-ci-token:.*@|${RELEASE_TOKEN}:${RELEASE_TOKEN_SECRET}@|g")
- git remote set-url origin $REPOSITORY_URL
- git config user.name $GITLAB_USER_LOGIN
- git config user.email $GITLAB_USER_EMAIL
- git branch -D ci-processing || true
- git checkout -b ci-processing
cache:
<<: *global_cache
script: |
npm run updateManifest -- --update=${RELEASE_TYPE}
RELEASE_VERSION=$(jq -r '.version' < package.json)
2021-02-07 19:49:23 +01:00
git add package.json package-lock.json src/module.json
2021-02-07 16:01:14 +01:00
git --no-pager diff
git commit -m "release version ${RELEASE_VERSION}"
git tag -f latest
git tag -f ${RELEASE_VERSION}
git push origin ci-processing:${CI_BUILD_REF_NAME}
git push origin latest -f
git push origin ${RELEASE_VERSION}
only:
- master
when: manual
release-patch:
variables:
RELEASE_TYPE: patch
<<: *release-template
release-minor:
variables:
RELEASE_TYPE: minor
<<: *release-template
release-major:
variables:
RELEASE_TYPE: major
<<: *release-template