refac: use another path which might be writable

This commit is contained in:
2025-09-26 11:01:15 +02:00
parent faaa61f934
commit 1c8b962c5c

View File

@@ -22,9 +22,9 @@ jobs:
- name: Install yarn
run: |
curl -fsSL -o ~/bin/yarn ${{ env.YARN_URL }}
chmod +x ~/bin/yarn
echo "$HOME/bin" >> $GITHUB_PATH
curl -fsSL -o ./.bin/yarn ${{ env.YARN_URL }}
chmod +x ./.bin/yarn
echo "./.bin" >> $GITHUB_PATH
- name: Install Node.js, NPM
uses: actions/setup-node@v5