blob: 4075f0848d03d76a1d0d1153d55b21f7ff57b4df (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/usr/bin/env bash
git diff --exit-code
git diff --staged --exit-code
flyctl deploy
VERSION=$(flyctl info -j |jq -r '.App | "notes.fcuny.net/v\(.Version)"')
git tag -a --message ${VERSION} ${VERSION}
git push origin --all
git push origin --tags
flyctl agent stop
|