-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcm
More file actions
executable file
·65 lines (29 loc) · 743 Bytes
/
Copy pathcm
File metadata and controls
executable file
·65 lines (29 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env bash
# Require commit message
if [ -z "$1" ]; then
echo "❌ Commit message required"
exit 1
fi
# "git init" for the first time
git add -A
git commit -m "$1"
# For First Time Setup:
# git remote add origin {link-here}
# git branch -m main
git fetch origin
git rebase origin/main
# "git push --set-upstream origin main" for the first time
git push --force-with-lease origin main
# ---------- NEW LOGIC BELOW ----------
# If a second argument is provided, treat it as a version tag
if [ -n "$2" ]; then
TAG="$2"
# Create annotated tag
git tag -a "$TAG" -m "$1"
# Push tag
git push origin "$TAG"
# Create GitHub release
gh release create "$TAG" \
--title "$TAG" \
--notes "$1"
fi