diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d880ee8..d4dc574 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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 diff --git a/build.py b/build.py index f13673a..6fd60a6 100644 --- a/build.py +++ b/build.py @@ -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)