We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0989b90 commit cf5df18Copy full SHA for cf5df18
README.md
@@ -68,3 +68,32 @@ lsrpath() {
68
69
This should be added to a `pkg doctor` type thing I reckon. eg.
70
`pkg doctor zlib.net -Q:rpath`.
71
+
72
73
+
74
75
76
+# Tasks
77
78
+## Bump
79
80
+Inputs: TAG_NAME
81
82
+```sh
83
+if ! git diff-index --quiet HEAD --; then
84
+ echo "error: dirty working tree" >&2
85
+ exit 1
86
+fi
87
88
+if [ "$(git rev-parse --abbrev-ref HEAD)" != "main" ]; then
89
+ echo "error: requires main branch" >&2
90
91
92
93
+if [[ "$TAG_NAME" != v* ]]; then
94
+ TAG_NAME="v$TAG_NAME"
95
96
97
+git push origin main
98
+tea gh release create "$TAG_NAME"
99
+```
0 commit comments