bindAPI/hooks/post-commit

9 lines
237 B
Plaintext
Raw Normal View History

2023-09-14 20:47:05 +02:00
#!/bin/bash
# calculate build number
build_number=$(git rev-list --count HEAD)
# add build number to composer.json using jq
jq --arg bn "$build_number" '.build_number = $bn' composer.json > tmp.$$.json && mv tmp.$$.json composer.json