mirror of
https://github.com/oneclickvirt/backtrace.git
synced 2025-02-23 09:25:40 +08:00
update
This commit is contained in:
parent
bce5441a80
commit
5488f1e64f
67
.github/workflows/main.yaml
vendored
67
.github/workflows/main.yaml
vendored
@ -26,8 +26,8 @@ jobs:
|
|||||||
go build -v ./...
|
go build -v ./...
|
||||||
go test -v ./...
|
go test -v ./...
|
||||||
|
|
||||||
release-binary:
|
build-binary:
|
||||||
name: Release Go Binary
|
name: Build Go Binary
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: build
|
needs: build
|
||||||
steps:
|
steps:
|
||||||
@ -39,42 +39,12 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
go-version: 'stable'
|
go-version: 'stable'
|
||||||
|
|
||||||
- name: Build and Release
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
mkdir -p bin
|
mkdir -p bin
|
||||||
cd cmd
|
cd cmd
|
||||||
go build -o ../bin/backtrace-${{ matrix.goos }}-${{ matrix.goarch }} -v .
|
go build -o ../bin/backtrace-${{ matrix.goos }}-${{ matrix.goarch }} -v .
|
||||||
|
|
||||||
- name: Check, Delete Existing Assets and Upload New Assets
|
|
||||||
run: |
|
|
||||||
release_id=$(curl -s -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" "https://api.github.com/repos/oneclickvirt/backtrace/releases/tags/output" | jq -r '.id')
|
|
||||||
echo "Checking, deleting existing assets, and uploading new assets..."
|
|
||||||
for file in ./bin/*; do
|
|
||||||
echo "Processing file: $file"
|
|
||||||
existing_asset_id=$(curl -s -H "Accept: application/vnd.github.v3+json" \
|
|
||||||
"https://api.github.com/repos/oneclickvirt/backtrace/releases/$release_id/assets" \
|
|
||||||
| jq -r --arg name "$(basename "$file")" '.[] | select(.name == $name) | .id')
|
|
||||||
if [ -n "$existing_asset_id" ]; then
|
|
||||||
echo "Asset 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/backtrace/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..."
|
|
||||||
continue
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
echo "No existing asset found."
|
|
||||||
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/incus_images/releases/$release_id/assets?name=$(basename "$file")"
|
|
||||||
rm -rf $file
|
|
||||||
done
|
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
goos: [windows, freebsd, openbsd, linux, darwin]
|
goos: [windows, freebsd, openbsd, linux, darwin]
|
||||||
@ -133,3 +103,34 @@ jobs:
|
|||||||
- goos: openbsd
|
- goos: openbsd
|
||||||
goarch: arm
|
goarch: arm
|
||||||
goarm: 7
|
goarm: 7
|
||||||
|
|
||||||
|
release-binary:
|
||||||
|
- name: Check, Delete Existing Assets and Upload New Assets
|
||||||
|
run: |
|
||||||
|
release_id=$(curl -s -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" "https://api.github.com/repos/oneclickvirt/backtrace/releases/tags/output" | jq -r '.id')
|
||||||
|
echo "Checking, deleting existing assets, and uploading new assets..."
|
||||||
|
for file in ./bin/*; do
|
||||||
|
echo "Processing file: $file"
|
||||||
|
existing_asset_id=$(curl -s -H "Accept: application/vnd.github.v3+json" \
|
||||||
|
"https://api.github.com/repos/oneclickvirt/backtrace/releases/$release_id/assets" \
|
||||||
|
| jq -r --arg name "$(basename "$file")" '.[] | select(.name == $name) | .id')
|
||||||
|
if [ -n "$existing_asset_id" ]; then
|
||||||
|
echo "Asset 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/backtrace/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..."
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "No existing asset found."
|
||||||
|
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/incus_images/releases/$release_id/assets?name=$(basename "$file")"
|
||||||
|
rm -rf $file
|
||||||
|
done
|
Loading…
Reference in New Issue
Block a user