From 03a9b0aef6dc47e8fa9a7df666eae22d79f3fa42 Mon Sep 17 00:00:00 2001 From: Michael Jerger Date: Thu, 22 Aug 2024 08:42:51 +0200 Subject: [PATCH] fix ci --- .gitlab-ci.yml | 4 ++-- build.py | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) 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)