Исправлена цель deploy в makefile.
All checks were successful
build / build (push) Successful in 35s
release / release (push) Successful in 37s

This commit is contained in:
Алексей Бадяев 2024-10-11 16:04:32 +07:00
parent 99953bd42a
commit 6b980d730f
Signed by: alexey
GPG Key ID: 686FBC1363E4AFAE

View File

@ -158,6 +158,14 @@ pkg-deb: build ## Build debian package
.PHONY:pkg-deb .PHONY:pkg-deb
endif endif
ifneq ($(OS),Windows_NT)
## Deploy
deploy: ## deploy debian packages
find -O1 $(OUT_DIR) -name '*.changes' -exec dput mousesoft \{\} \;
.PHONY:deploy
endif
## Test ## Test
test: ## Run the tests of the project test: ## Run the tests of the project
@ -210,12 +218,6 @@ doc-golds: doc-common ## Generate HTML documentation with Golds.
-silent -only-list-exporteds -wdpkgs-listing=solo ./... -silent -only-list-exporteds -wdpkgs-listing=solo ./...
.PHONY:doc-golds .PHONY:doc-golds
## Deploy
deploy: ## deploy debian packages
find -O1 $(OUT_DIR) -name '*.changes' -exec dput mousesoft \{\} \;
.PHONY:deploy-deb
## Help ## Help
help: ## Show this help. help: ## Show this help.