blob: 41997668867a451fef01868c6bb908765e2ee5c4 (
plain) (
tree)
|
|
#!/usr/bin/env bash
set -ueo pipefail
cd $(git rev-parse --show-toplevel)
git diff --exit-code
git diff --staged --exit-code
cd users/fcuny/blog
flyctl deploy
VERSION=$(flyctl info -j |jq -r '.App | "fcuny.net/v\(.Version)"')
git tag -a --message ${VERSION} ${VERSION}
git push origin --all
git push origin --tags
flyctl agent stop
|