Skip to content

Commit

Permalink
use explicit paths to github runner HOME
Browse files Browse the repository at this point in the history
Signed-off-by: Pawel Czarnecki <[email protected]>
  • Loading branch information
lpawelcz committed Feb 19, 2024
1 parent ede3014 commit 70b6e6f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ jobs:
- name: Workaround overriden HOME env var
run: |
mkdir -p /github
ln -s /root $HOME
ls -la /github
[ -d /github/home ] && ls -la /github/home && rm -rf /github/home
ln -s /root /github/home
whoami
echo $HOME
ls -la $HOME
Expand Down Expand Up @@ -84,7 +86,9 @@ jobs:
- name: Workaround overriden HOME env var
run: |
mkdir -p /github
ln -s /root $HOME
ls -la /github
[ -d /github/home ] && ls -la /github/home && rm -rf /github/home
ln -s /root /github/home
whoami
echo $HOME
ls -la $HOME
Expand Down

0 comments on commit 70b6e6f

Please sign in to comment.