From faaa61f9348c789232ab9a9c8f9b8a54e4cc1e9e Mon Sep 17 00:00:00 2001 From: Daan Selen Date: Fri, 26 Sep 2025 11:00:13 +0200 Subject: [PATCH] fix: fix github actions specific limitations --- .github/workflows/action-release.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/action-release.yaml b/.github/workflows/action-release.yaml index 2f13d05..7d24066 100644 --- a/.github/workflows/action-release.yaml +++ b/.github/workflows/action-release.yaml @@ -22,8 +22,9 @@ jobs: - name: Install yarn run: | - curl -fsSL -o /bin/yarn ${{ env.YARN_URL }} - chmod +x /bin/yarn + curl -fsSL -o ~/bin/yarn ${{ env.YARN_URL }} + chmod +x ~/bin/yarn + echo "$HOME/bin" >> $GITHUB_PATH - name: Install Node.js, NPM uses: actions/setup-node@v5