-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgithub-release.sh
executable file
·77 lines (61 loc) · 1.7 KB
/
github-release.sh
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
66
67
68
69
70
71
72
73
74
75
76
77
#!/bin/bash
fetch_tags() {
git fetch --all --force --tags --prune-tags --prune
}
create_release_nightly() {
printf "create/replace release 'nightly' on branch %s\n" $GITHUB_REF_NAME
fetch_tags
RELEASE=nightly
gh release delete \
--cleanup-tag \
--yes \
$RELEASE \
2>/dev/null || true
# Workaround for https://github.com/cli/cli/issues/8458
printf "waiting for tag to be deleted\n"
while fetch_tags; git tag -l | grep $RELEASE; do
sleep 10;
printf "still waiting...\n"
done
fetch_tags
gh release create \
--title "Nightly" \
--notes "$(date +'%Y-%m-%d %H:%M:%S')" \
--target $GITHUB_REF \
--latest=false \
$RELEASE
fetch_tags
}
create_release_prod() {
EXISTING=$(gh release list \
--json tagName \
--jq "[.[] | select(.tagName == \"$RELEASE\").tagName][0]")
if [[ -z $EXISTING ]]; then
printf "create new release '%s'\n" $RELEASE
gh release create \
--title $RELEASE \
--notes "$(date +'%Y-%m-%d %H:%M:%S')" \
--verify-tag \
$RELEASE
else
printf "use existing release '%s'\n" $RELEASE
fi
}
upload_artifacts() {
printf "uploading artifacts to '%s'\n" $RELEASE
gh release upload --clobber $RELEASE $DISTDIR/*
}
DISTDIR="./dist"
printf "verify github auth status:\n%s\n\n" "$(gh auth status)"
if [[ $GITHUB_REF_TYPE == 'tag' ]]; then
RELEASE=$GITHUB_REF_NAME
create_release_prod
elif [[ $GITHUB_REF_TYPE == 'branch' ]]; then
RELEASE="nightly"
create_release_nightly
fi
if [[ -e $DISTDIR ]]; then
upload_artifacts
else
printf "no artifacts to upload\n"
fi