From 339be371cd5f3d8755316069eec41b06538156bf Mon Sep 17 00:00:00 2001 From: Sebastian Stenzel Date: Tue, 20 Jul 2021 17:54:03 +0200 Subject: [PATCH] upload contents of appdir without the "Cryptomator[.app]" itself --- .github/workflows/build.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bd8496342..cebe4e87c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -201,16 +201,17 @@ jobs: --java-options "-Xss5m" --java-options "-Xmx256m" ${{ matrix.jpackageoptions }} - - name: Add Contrib Files - run: | - if [ -e dist/appdir/${{ matrix.profile }}/contrib/ ]; then - cp dist/appdir/${{ matrix.profile }}/contrib/* appdir/ - fi + # TODO: patch in separate job + # - name: Add Contrib Files + # run: | + # if [ -e dist/appdir/${{ matrix.profile }}/contrib/ ]; then + # cp dist/appdir/${{ matrix.profile }}/contrib/* appdir/ + # fi - name: Upload appdir-${{ matrix.profile }} uses: actions/upload-artifact@v2 with: name: appdir-${{ matrix.profile }} - path: appdir + path: appdir/Cryptomator*/ if-no-files-found: error