From b8cd1caeac8b832875efcf1e32bdcd7931767e60 Mon Sep 17 00:00:00 2001 From: Armin Schrenk Date: Wed, 21 Feb 2024 13:09:14 +0100 Subject: [PATCH] also upload asc file as artifact for mac build --- .github/workflows/mac-dmg.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/mac-dmg.yml b/.github/workflows/mac-dmg.yml index be5747839..c4edec9b4 100644 --- a/.github/workflows/mac-dmg.yml +++ b/.github/workflows/mac-dmg.yml @@ -253,7 +253,9 @@ jobs: uses: actions/upload-artifact@v4 with: name: dmg-${{ matrix.output-suffix }} - path: Cryptomator-*.dmg + path: | + Cryptomator-*.dmg + Cryptomator-*.asc if-no-files-found: error - name: Publish dmg on GitHub Releases if: startsWith(github.ref, 'refs/tags/') && github.event_name == 'published'