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:
parent
c1ebf589e2
commit
bfb0ba38d0
3 changed files with 87 additions and 6 deletions
6
Makefile
6
Makefile
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue