From fcbd65f3a5511d396287a269f9d32db9c47f18f0 Mon Sep 17 00:00:00 2001 From: Florian Maas Date: Mon, 4 Sep 2023 10:37:23 +0200 Subject: [PATCH] Hooks (#89) * Added more pre-commit hooks * fix --- {{cookiecutter.project_name}}/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_name}}/Makefile b/{{cookiecutter.project_name}}/Makefile index c00b1a6..5406d96 100644 --- a/{{cookiecutter.project_name}}/Makefile +++ b/{{cookiecutter.project_name}}/Makefile @@ -51,7 +51,7 @@ build-and-publish: build publish ## Build and publish. {%- elif cookiecutter.publish_to == "artifactory" %} .PHONY: publish -publish: ## Publish to the Artifactory repository using poetry. Requires ARTIFACTORY_TOKEN for DPS-FF-ILO to be set. +publish: ## Publish to the Artifactory repository using poetry. Requires ARTIFACTORY_TOKEN to be set. @echo "🚀 Publishing: Dry run." @poetry config repositories.artifactory $(ARTIFACTORY_URL) @poetry publish --repository artifactory --username $(ARTIFACTORY_USERNAME) --password $(ARTIFACTORY_PASSWORD) --dry-run