-
Notifications
You must be signed in to change notification settings - Fork 2
/
build_and_upload_all.sh
54 lines (50 loc) · 2.38 KB
/
build_and_upload_all.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
#!/bin/bash
if [ -z "$1" ]; then
echo "Error: GITHUB_TOKEN not provided"
exit 1
fi
echo "Checking GITHUB_TOKEN (first 4 characters): ${GITHUB_TOKEN:0:4}"
GITHUB_TOKEN="$1"
# apt-get update
# apt-get install -y sudo
# sudo apt-get install -y zip jq snapd debootstrap
# sudo snap install distrobuilder --classic
# distros=("ubuntu" "oracle" "openeuler")
distro="$2"
if [ -n $distro ]; then
echo "Processing distro: $distro"
zip_name_list=($(bash build_images.sh $distro false arm64 | tail -n 1))
release_id=$(curl -s -H "Accept: application/vnd.github.v3+json" "https://api.github.com/repos/oneclickvirt/lxc_arm_images/releases/tags/$distro" | jq -r '.id')
echo "Building $distro and packge zips"
bash build_images.sh $distro true arm64
for file in "${zip_name_list[@]}"; do
if [ -f "$file" ] && [ $(stat -c %s "$file") -gt 10485760 ]; then
echo "Checking if $file already exists in release..."
existing_asset_id=$(curl -s -H "Accept: application/vnd.github.v3+json" \
"https://api.github.com/repos/oneclickvirt/lxc_arm_images/releases/$release_id/assets" \
| jq -r --arg name "$(basename "$file")" '.[] | select(.name == $name) | .id')
if [ -n "$existing_asset_id" ]; then
echo "Asset $file already exists in release, deleting existing asset..."
delete_response=$(curl -s -X DELETE -H "Authorization: Bearer $GITHUB_TOKEN" "https://api.github.com/repos/oneclickvirt/lxc_arm_images/releases/assets/$existing_asset_id")
echo "$delete_response"
if [ $? -eq 0 ] && ! echo "$delete_response" | grep -q "error"; then
echo "Existing asset deleted successfully."
else
echo "Failed to delete existing asset. Skipping file upload..."
rm -rf $file
continue
fi
else
echo "No $file file."
fi
echo "Uploading $file to release..."
curl -s -H "Authorization: Bearer $GITHUB_TOKEN" \
-H "Content-Type: application/zip" \
--data-binary @"$file" \
"https://uploads.github.com/repos/oneclickvirt/lxc_arm_images/releases/$release_id/assets?name=$(basename "$file")"
rm -rf $file
else
echo "No $file or less than 10 MB"
fi
done
fi