File: release

package info (click to toggle)
circe 2.14%2B34-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 848 kB
  • sloc: lisp: 9,808; sh: 40; makefile: 4
file content (17 lines) | stat: -rwxr-xr-x 166 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

set -e
cd "$(dirname "$0")/.."

main() {
    run bumpversion minor
    run git push
    run git push --tags
}

run() {
    echo "\$ $*"
    "$@"
}

main