From 94b3ea37d67b7792a749b3f9e8349585818a8c41 Mon Sep 17 00:00:00 2001 From: Armin Schrenk Date: Fri, 22 Apr 2022 16:19:09 +0200 Subject: [PATCH] use absolute path in workflow --- .github/workflows/mac-dmg.yml | 2 +- .github/workflows/win-exe.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/mac-dmg.yml b/.github/workflows/mac-dmg.yml index 1307c543a..04207243b 100644 --- a/.github/workflows/mac-dmg.yml +++ b/.github/workflows/mac-dmg.yml @@ -111,7 +111,7 @@ jobs: -Dlicense.includedScopes=compile -Dlicense.excludedGroups=^org\.cryptomator -Dlicense.failOnMissing=true - -Dlicense.licenseMergesUrl=file:///license/merges + -Dlicense.licenseMergesUrl=file:///${{ env.GITHUB_WORKSPACE }}/license/merges - name: Install codesign certificate run: | # create variables diff --git a/.github/workflows/win-exe.yml b/.github/workflows/win-exe.yml index 8edb3fd2f..80c480165 100644 --- a/.github/workflows/win-exe.yml +++ b/.github/workflows/win-exe.yml @@ -124,7 +124,7 @@ jobs: -Dlicense.includedScopes=compile -Dlicense.excludedGroups=^org\.cryptomator -Dlicense.failOnMissing=true - -Dlicense.licenseMergesUrl=file:///license/merges + -Dlicense.licenseMergesUrl=file:///${{ env.GITHUB_WORKSPACE }}/license/merges - name: Create MSI run: > ${JAVA_HOME}/bin/jpackage @@ -214,7 +214,7 @@ jobs: -Dlicense.includedScopes=compile -Dlicense.excludedGroups=^org\.cryptomator -Dlicense.failOnMissing=true - -Dlicense.licenseMergesUrl=file:///license/merges + -Dlicense.licenseMergesUrl=file:///${{ env.GITHUB_WORKSPACE }}/license/merges - name: Download WinFsp run: curl --output dist/win/bundle/resources/winfsp.msi -L ${{ env.WINFSP_MSI }}