mirror of
https://github.com/alrayyes/docker-alpine-hugo-git-bash
synced 2023-11-14 15:56:26 +00:00
22 lines
365 B
Bash
Executable File
22 lines
365 B
Bash
Executable File
set -ex
|
|
|
|
USERNAME=andthensome
|
|
IMAGE=alpine-hugo-git-bash
|
|
|
|
git pull
|
|
|
|
# bump version
|
|
sudo docker run --rm -v "$PWD":/app treeder/bump patch
|
|
version=`cat VERSION`
|
|
echo "version: $version"
|
|
|
|
# run build
|
|
sudo env IMAGE_NAME=$IMAGE sh ./hooks/build
|
|
|
|
# tag it
|
|
git add -A
|
|
git commit -m "version $version"
|
|
git tag -a "$version" -m "version $version"
|
|
git push
|
|
git push --tags
|