Robin Mueller
afba412fe2
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good
8 lines
341 B
Bash
Executable File
8 lines
341 B
Bash
Executable File
#!/bin/bash
|
|
obsw_version_filename="obsw_version.txt"
|
|
version_cmd="git describe --tags --always --exclude docker_*"
|
|
version_tag=$(${version_cmd})
|
|
echo "-I- Running ${version_cmd} to retrieve OBSW version and store it into ${obsw_version_filename}"
|
|
echo "-I- Detected version tag ${version_tag}"
|
|
echo ${version_tag} > ${obsw_version_filename}
|