Skip to content

Commit

Permalink
action: Fix up $PATH as a workaround
Browse files Browse the repository at this point in the history
Can be removed once actions/runner-images#11414
is addressed.
  • Loading branch information
DaanDeMeyer committed Jan 17, 2025
1 parent 9d53f8f commit 38803df
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,12 @@ 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: |
Expand Down

0 comments on commit 38803df

Please sign in to comment.