Adding support for issue-body with more than 65536 words, issue body to be created as an issue comment (#167)

* push a built package to ghcr
* adding err catch
* auth check
* auth update
* update uname
* update uname
* testing with splitted issues
* minor fix
* revert testing changes
* Update approval.go
This commit is contained in:
Sunny 2025-04-26 12:02:02 +05:30 committed by GitHub
parent c1ebf589e2
commit bfb0ba38d0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 87 additions and 6 deletions

View file

@ -7,7 +7,7 @@ tidy:
.PHONY: build
build:
@if [ -z "$$VERSION" ]; then \
@if [ -z "$(VERSION)" ]; then \
echo "VERSION is required"; \
exit 1; \
fi
@ -15,11 +15,11 @@ build:
.PHONY: push
push:
@if [ -z "$$VERSION" ]; then \
@if [ -z "$(VERSION)" ]; then \
echo "VERSION is required"; \
exit 1; \
fi
docker push $(IMAGE_REPO):$$VERSION
docker push $(IMAGE_REPO):$(VERSION)
.PHONY: test
test: