-
Notifications
You must be signed in to change notification settings - Fork 1
62 lines (56 loc) · 2.78 KB
/
centos_x86_64.yml
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
name: centos x86_64
on:
schedule:
- cron: '0 13 * * *'
workflow_dispatch:
jobs:
centos_x86_64_images:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: check path
run: |
pwd
- name: Configure Git
run: |
git config --global user.name "daily-update"
git config --global user.email "[email protected]"
- name: Build and Upload Images
run: |
distros=("centos")
for distro in "${distros[@]}"; do
zip_name_list=($(bash build_images.sh $distro false x86_64 | tail -n 1))
release_id=$(curl -s -H "Accept: application/vnd.github.v3+json" "https://api.github.com/repos/oneclickvirt/lxc_amd64_images/releases/tags/$distro" | jq -r '.id')
echo "Building $distro and packge zips"
bash build_images.sh $distro true x86_64
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_amd64_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 ${{ secrets.GITHUB_TOKEN }}" "https://api.github.com/repos/oneclickvirt/lxc_amd64_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 ${{ secrets.GITHUB_TOKEN }}" \
-H "Content-Type: application/zip" \
--data-binary @"$file" \
"https://uploads.github.com/repos/oneclickvirt/lxc_amd64_images/releases/$release_id/assets?name=$(basename "$file")"
rm -rf $file
else
echo "No $file or less than 10 MB"
fi
done
done