garrettmills
23bed9fb7c
All checks were successful
continuous-integration/drone/push Build is passing
10 lines
165 B
Bash
Executable File
10 lines
165 B
Bash
Executable File
#!/bin/bash -xe
|
|
|
|
CI_SUB="$DRONE_TAG"
|
|
|
|
if [ -z "$CI_SUB" ]; then
|
|
CI_SUB="ci${DRONE_BUILD_NUMBER}"
|
|
fi
|
|
|
|
sed -i -e "s/%%CI_BUILD_VERSION%%/${CI_SUB}/g" build.gradle
|