File: release

package info (click to toggle)
pyvenv-el 1.21%2Bgit20211014.31ea715-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 200 kB
  • sloc: lisp: 718; makefile: 30; sh: 12
file content (17 lines) | stat: -rwxr-xr-x 166 bytes parent folder | download | duplicates (9)
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