This commit is contained in:
Michael Jerger 2024-08-22 08:42:51 +02:00
parent fcfcd4b79d
commit 03a9b0aef6
2 changed files with 5 additions and 5 deletions

View file

@ -41,7 +41,7 @@ package-jar:
<<: *clj
stage: package
script:
- pyb package_jar
- pyb package
artifacts:
paths:
- target/org.domaindrivenarchitecture
@ -51,7 +51,7 @@ release-to-clojars:
<<: *tag_only
stage: upload
script:
- pyb upload_clj
- pyb upload
dda-backup-image-publish:
<<: *img

View file

@ -35,17 +35,17 @@ def initialize(project):
@task
def test_clj(project):
def test(project):
run("make test", shell=True, check=True)
@task
def package_jar(project):
def package(project):
run("make build-jar", shell=True, check=True)
@task
def upload_clj(project):
def upload(project):
run("make deploy", shell=True, check=True)