Skip to content

Commit cf5bef2

Browse files
committed
action: Fix up $PATH as a workaround
Can be removed once actions/runner-images#11414 is addressed.
1 parent 9d53f8f commit cf5bef2

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

action.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,11 @@ runs:
8282
mkdir -p $HOME/.local/bin
8383
ln -svf ${{ github.action_path }}/bin/mkosi $HOME/.local/bin/mkosi
8484
85+
# TODO: Remove when https://github.com/actions/runner-images/issues/11414 is fixed.
86+
- name: Fix $PATH
87+
shell: bash
88+
run: echo "PATH=$HOME/.local/bin:$PATH" >>"$GITHUB_ENV"
89+
8590
- name: Dependencies
8691
shell: bash
8792
run: |

0 commit comments

Comments
 (0)