From 33451d4fa5bc6c97f47a7f17dec226704dc6bd5a Mon Sep 17 00:00:00 2001 From: Martin Marmsoler Date: Sat, 20 Apr 2024 18:30:53 +0200 Subject: [PATCH] Description: --- .github/workflows/build.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3e7ddd61..03550675 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,7 +30,6 @@ jobs: - name: Check CMake code style run: | - test -e "NotFound.txt" || exit 1 pip install cmake-format==0.6.13 && \ find \( -type d -path './dep/*/*' -prune \) -o \( -name CMakeLists.txt -exec cmake-format --check {} + \) @@ -387,15 +386,15 @@ jobs: - name: list artifacts folder run: | - set -e echo "Show artifacts folder:" ls artifacts - file "artifacts/Gittyup win64/Gittyup*.exe" - file "artifacts/Gittyup win32/Gittyup*.exe" - file "artifacts/Gittyup macos/Gittyup*.dmg" - file "artifacts/Gittyup-VERSION/Version.txt" - file "artifacts/GittyupFlatpak/*.flatpak" - file "artifacts/GittyupAppImage/Gittyup*.AppImage" + echo "Check artifacts" + test -e "artifacts/Gittyup win64/Gittyup*.exe" || exit 1 + test -e "artifacts/Gittyup win32/Gittyup*.exe" || exit 1 + test -e "artifacts/Gittyup macos/Gittyup*.dmg" || exit 1 + test -e "artifacts/Gittyup-VERSION/Version.txt" || exit 1 + test -e "artifacts/GittyupFlatpak/*.flatpak" || exit 1 + test -e "artifacts/GittyupAppImage/Gittyup*.AppImage" || exit 1 # version is exported from cmake to file - name: Retrieve version