mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
8 lines
230 B
Bash
8 lines
230 B
Bash
#!/bin/bash
|
|
echo "Writing build metadata to .env.git"
|
|
cat > .env.git <<EOF
|
|
export BUILD_COMMIT=$(git rev-parse HEAD)
|
|
export BUILD_COMMIT_SHORT=$(git rev-parse --short HEAD)
|
|
export BUILD_VERSION=$(git describe --tags --always)
|
|
EOF
|