From e8d58195c5ead40580d27c5213736ad433d211da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20Fabian=20Kr=C3=BCger?= Date: Sun, 25 Feb 2024 01:00:56 +0100 Subject: [PATCH] Set correct path --- action.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/action.yml b/action.yml index 794354c..1d50708 100644 --- a/action.yml +++ b/action.yml @@ -61,5 +61,10 @@ runs: if ${{ steps.install.outcome == 'success' }} ; then echo "key=${{ steps.load-cache.outputs.cache-primary-key }}" ; else echo "key=${{ steps.load-cache.outputs.cache-matched-key }}" ; fi >> $GITHUB_OUTPUT id: key - name: Set path + if: runner.os == 'Linux' shell: sh run: echo "$HOME/texlive/bin/x86_64-linux" >> $GITHUB_PATH + - name: Set path + if: runner.os == 'Windows' + shell: sh + run: echo "$USERPROFILE/texlive/bin/windows" >> $GITHUB_PATH