Update .forgejo/workflows/release.yaml
Some checks failed
Run Integration Tests / test (push) Failing after 37s

This commit is contained in:
Internet Addict 2025-06-01 08:25:47 +00:00
parent 73de8a4fa9
commit c586af359e

View file

@ -28,7 +28,7 @@ jobs:
echo "$VERSION" > version.txt
echo "✅ Detected version: $VERSION"
- name: Build all targets
- name: Build all targets
run: |
PLATFORMS=(
"linux/amd64"
@ -55,7 +55,7 @@ jobs:
case "$VARIANT" in
v7) GOARM=7 ;;
v6) GOARM=6 ;;
*) GOARM=7 ;; # default fallback
*) GOARM=7 ;;
esac
GOOS=$OS GOARCH=arm GOARM=$GOARM \
go build -ldflags="-s -w" -o "$OUT" ./.
@ -65,7 +65,7 @@ jobs:
fi
done
- name: Create Forgejo release
- name: Create Forgejo release
run: |
TAG_NAME=$(cat version.txt)
echo "📦 Creating release for tag: $TAG_NAME"