Skip to content

Commit

Permalink
chore: workaround yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
jeluard committed Apr 25, 2024
1 parent 7cd32a9 commit 46ada0a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ jobs:
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v4
- name: Install yarn
if: matrix.arch == 'arm64'
run: |-
curl -fsSL --create-dirs -o $HOME/bin/yarn \
https://github.com/yarnpkg/yarn/releases/download/v1.22.22/yarn-1.22.22.js
chmod +x $HOME/bin/yarn
echo "$HOME/bin" >> $GITHUB_PATH
- uses: "./.github/actions/setup-and-build"
with:
node: 20
Expand Down

0 comments on commit 46ada0a

Please sign in to comment.