Files
luos/.gitlab-ci.yml
2025-10-15 16:19:44 +00:00

20 lines
402 B
YAML

variables:
GIT_STRATEGY: fetch
GIT_FETCH_EXTRA_FLAGS: --prune --tags --depth 500
stages:
- build
build_job:
only:
- develop
stage: build
script:
# Download fileManager
- bash docker/download_filemanager.sh "1.0.11"
- bash docker/build.sh $VERSION
before_script:
- VERSION=$(git describe | awk -F- '{ if( $2) {print $1 "." $2} else {print $1 ".1"} }' )
- echo $VERSION