From: Daan De Meyer Date: Fri, 17 Jan 2025 13:10:50 +0000 (+0100) Subject: action: Fix up $PATH as a workaround X-Git-Tag: v25~42 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=49832f6c2af0f7ef0a458d1e0795ad1854ecd863;p=thirdparty%2Fmkosi.git action: Fix up $PATH as a workaround Can be removed once https://github.com/actions/runner-images/issues/11414 is addressed. --- diff --git a/action.yaml b/action.yaml index 95c5a1ee2..edd9f0369 100644 --- a/action.yaml +++ b/action.yaml @@ -82,6 +82,11 @@ runs: mkdir -p $HOME/.local/bin ln -svf ${{ github.action_path }}/bin/mkosi $HOME/.local/bin/mkosi + # TODO: Remove when https://github.com/actions/runner-images/issues/11414 is fixed. + - name: Fix $PATH + shell: bash + run: echo "PATH=$HOME/.local/bin:$PATH" >>"$GITHUB_ENV" + - name: Dependencies shell: bash run: |