From 47903c5642a70b6446fa5a322236120a89bde55d Mon Sep 17 00:00:00 2001 From: Maxwell Mapako Date: Fri, 3 May 2024 14:54:09 +0200 Subject: [PATCH] hotfix(jitpack): update jitpack.yml (#212) Removed `before_install` and `after_install` steps as they are not necessarily required for building artifacts on jitpack unless we need to run some tests --- jitpack.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/jitpack.yml b/jitpack.yml index 82d1c7f0..5843abda 100644 --- a/jitpack.yml +++ b/jitpack.yml @@ -1,14 +1,8 @@ jdk: - openjdk17 -before_install: - - echo "Running pre-build setup" - - ./gradlew emojify:preTest install: - echo "Running clean, build, publishMavenPublicationToMavenLocal commands" - ./gradlew clean build - ./gradlew publishMavenPublicationToMavenLocal -after_install: - - echo "Cleaning up post installation" - - ./gradlew emojify:postTest env: CI: "true"