From afe77371290b0d92e2091b12505c5d185de4cd8e Mon Sep 17 00:00:00 2001 From: Armin Schrenk Date: Fri, 22 Apr 2022 16:24:46 +0200 Subject: [PATCH] wrong usage of github workspace var --- .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 04207243b..63359b5c5 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:///${{ env.GITHUB_WORKSPACE }}/license/merges + -Dlicense.licenseMergesUrl=file://${{ 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 80c480165..c5bedfa98 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:///${{ env.GITHUB_WORKSPACE }}/license/merges + -Dlicense.licenseMergesUrl=file://${{ 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:///${{ env.GITHUB_WORKSPACE }}/license/merges + -Dlicense.licenseMergesUrl=file://${{ github.workspace }}/license/merges - name: Download WinFsp run: curl --output dist/win/bundle/resources/winfsp.msi -L ${{ env.WINFSP_MSI }}