From caf094945e1558441b0134f62703e8648b496cc5 Mon Sep 17 00:00:00 2001 From: Fabian Zeindl Date: Sun, 5 May 2024 07:09:47 +0200 Subject: [PATCH] [build] fix building documentation --- .github/workflows/build-master.yml | 4 +--- build.gradle | 1 - 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/build-master.yml b/.github/workflows/build-master.yml index 2759ab2..60020fc 100644 --- a/.github/workflows/build-master.yml +++ b/.github/workflows/build-master.yml @@ -40,10 +40,8 @@ jobs: - name: Check repository for commits run: | if [ -n "$(git status --porcelain)" ]; then - echo "there are changes" + echo "Build created uncommitted changes in repository" exit 1 - else - echo "no changes" fi - uses: actions/configure-pages@v3 diff --git a/build.gradle b/build.gradle index cef4b57..bcf2790 100644 --- a/build.gradle +++ b/build.gradle @@ -85,6 +85,5 @@ task buildDocumentation(dependsOn: ['dokkaHtml']) { } delete("${project.rootDir}/documentation/${project.version}/older") } - file("${project.rootDir}/documentation/test").createNewFile() } }