blob: 4f46b68cce6c909bbff6937b766c13ce39322f6b (
plain) (
tree)
|
|
#!/usr/bin/env bash
git diff --exit-code
git diff --staged --exit-code
flyctl deploy
VERSION=$(flyctl info -j |jq -r '.App | "\(.Name)/v\(.Version)"')
git tag -a --message ${VERSION} ${VERSION}
git push origin --all
git push origin --tags
flyctl agent stop
|