mirror of
https://github.com/grafana/grafana.git
synced 2025-02-10 23:55:47 -06:00
12 lines
265 B
Bash
Executable File
12 lines
265 B
Bash
Executable File
#!/bin/bash
|
|
|
|
mkdir -p dist
|
|
|
|
echo "Circle branch: ${CIRCLE_BRANCH}"
|
|
echo "Circle tag: ${CIRCLE_TAG}"
|
|
docker run -i -t --name gfbuild \
|
|
-v $(pwd)/dist:/tmp/dist \
|
|
-e "CIRCLE_BRANCH=${CIRCLE_BRANCH}" \
|
|
-e "CIRCLE_TAG=${CIRCLE_BRANCH}" \
|
|
grafana/buildcontainer
|