mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
build: build specific enterprise version when releasing.
This commit is contained in:
parent
46f2808eaf
commit
b1f5a232da
@ -1,6 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
cd ..
|
||||
git clone -b master --single-branch git@github.com:grafana/grafana-enterprise.git --depth 1
|
||||
|
||||
|
||||
if [ -z "$CIRCLE_TAG" ]; then
|
||||
_target="master"
|
||||
else
|
||||
_target="$CIRCLE_TAG"
|
||||
fi
|
||||
|
||||
git clone -b "$_target" --single-branch git@github.com:grafana/grafana-enterprise.git --depth 1
|
||||
|
||||
cd grafana-enterprise
|
||||
./build.sh
|
||||
|
Loading…
Reference in New Issue
Block a user