From 1999466789a217c763632d8d46faea82c2e2552d Mon Sep 17 00:00:00 2001 From: Martin Marmsoler Date: Mon, 27 Jan 2025 17:54:05 +0100 Subject: [PATCH] disable windows and macos releases, because they have problems with the theme --- .github/workflows/build.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 24768fec5..dc5cecae8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -370,11 +370,13 @@ jobs: title: 'Latest Build (Development)' automatic_release_tag: 'development' files: | - **/artifacts/Gittyup win64/Gittyup*.exe - **/artifacts/Gittyup macos/Gittyup*.dmg **/artifacts/GittyupFlatpak/*.flatpak **/artifacts/GittyupAppImage/Gittyup*.AppImage + # Currently disabled, because we have problems with the theme + # **/artifacts/Gittyup win64/Gittyup*.exe + # **/artifacts/Gittyup macos/Gittyup*.dmg + - name: Update GitHub release (version tag) uses: marvinpinto/action-automatic-releases@latest if: ${{ env.IS_RELEASE == 'true'}} @@ -384,11 +386,13 @@ jobs: title: Gittyup Release ${{ steps.version.outputs.VERSION }} automatic_release_tag: ${{ github.ref_name }} files: | - **/artifacts/Gittyup win64/Gittyup*.exe - **/artifacts/Gittyup macos/Gittyup*.dmg **/artifacts/GittyupFlatpak/*.flatpak **/artifacts/GittyupAppImage/Gittyup*.AppImage + # Currently disabled, because we have problems with the theme + # **/artifacts/Gittyup win64/Gittyup*.exe + # **/artifacts/Gittyup macos/Gittyup*.dmg + # needed otherwise the docs folder is not available - name: Checkout repository if: ${{ env.IS_RELEASE == 'true'}}