extension-workshop/.utils/build-version-json.sh

15 строки
353 B
Bash
Executable File

#!/bin/bash
echo "$(dirname $0)"
cd $(dirname $0)/..
HASH=$(git --no-pager log --format=format:"%H" -1)
TAG=$(git show-ref --tags | awk "/$HASH/ {print \$NF}" | sed 's/refs.tags.//')
printf '{"commit":"%s","version":"%s","source":"https://github.com/mozilla/extensions-challenge"}\n' \
"$HASH" \
"$TAG" \
> version.json
cat version.json