Fix up some build issues before they happen

This commit is contained in:
Raoul Snyman 2022-12-31 13:27:25 -07:00
parent 11fc8bedaa
commit d50501cddc
1 changed files with 16 additions and 3 deletions

View File

@ -21,12 +21,25 @@ test:
except:
- tags
build:
build-branch:
stage: build
script:
- yarn install
- yarn build --no-progress --prod --aot
- 'echo "let window.appVersion = \"$CI_COMMIT_TAG\";" >> dist/web-remote/assets/version.js'
- yarn build --no-progress --configuration production --aot
- export APP_VERSION=`git describe --dirty --tags --long --match '*[0-9]*'`
- 'echo "window.appVersion = \"$APP_VERSION\";" > dist/web-remote/assets/version.js'
artifacts:
paths:
- dist/
only:
- branches
build-tag:
stage: build
script:
- yarn install
- yarn build --no-progress --configuration production --aot
- 'echo "window.appVersion = \"$CI_COMMIT_TAG\";" > dist/web-remote/assets/version.js'
artifacts:
paths:
- dist/