mirror of
https://github.com/evilsocket/arc.git
synced 2024-05-26 22:37:37 +03:00
32 lines
744 B
Bash
Executable File
32 lines
744 B
Bash
Executable File
#!/bin/bash
|
|
# nothing to see here, just a utility i use to create new releases ^_^
|
|
|
|
CURRENT_VERSION=$(cat arcd/config/version.go | grep APP_VERSION | cut -d '"' -f 2)
|
|
TO_UPDATE=(
|
|
arcd/config/version.go
|
|
arc/manifest.json
|
|
arc/js/version.js
|
|
)
|
|
|
|
echo -n "Current version is $CURRENT_VERSION, select new version: "
|
|
read NEW_VERSION
|
|
echo "Creating version $NEW_VERSION ...\n"
|
|
|
|
for file in "${TO_UPDATE[@]}"
|
|
do
|
|
echo "Patching $file ..."
|
|
sed -i "s/$CURRENT_VERSION/$NEW_VERSION/g" $file
|
|
git add $file
|
|
done
|
|
|
|
git commit -m "Releasing v$NEW_VERSION"
|
|
git push
|
|
|
|
git tag -a v$NEW_VERSION -m "Release v$NEW_VERSION"
|
|
git push origin v$NEW_VERSION
|
|
|
|
cp arcd/sample_config.json .
|
|
rm -rf dist
|
|
|
|
echo "\nAll done, just run goreleaser now ^_^"
|