diff options
| author | Dax Raad <[email protected]> | 2026-03-10 14:08:38 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2026-03-10 14:08:38 -0400 |
| commit | e44320980d6ede1313fce74d6ff8d8b439f61fb1 (patch) | |
| tree | 3586cd86ebad26c6cedd0fd69b57a5abafb99757 /.github/actions | |
| parent | f5d7fe3072a38d0378b59c9f163f980033dbd430 (diff) | |
| download | opencode-e44320980d6ede1313fce74d6ff8d8b439f61fb1.tar.gz opencode-e44320980d6ede1313fce74d6ff8d8b439f61fb1.zip | |
ci: install setuptools to prevent Python distutils errors during dependency installation
Diffstat (limited to '.github/actions')
| -rw-r--r-- | .github/actions/setup-bun/action.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/actions/setup-bun/action.yml b/.github/actions/setup-bun/action.yml index 6c632f7e0..3f06da519 100644 --- a/.github/actions/setup-bun/action.yml +++ b/.github/actions/setup-bun/action.yml @@ -31,6 +31,10 @@ runs: bun-version-file: ${{ !steps.bun-url.outputs.url && 'package.json' || '' }} bun-download-url: ${{ steps.bun-url.outputs.url }} + - name: Install setuptools for distutils compatibility + run: python3 -m pip install setuptools || pip install setuptools || true + shell: bash + - name: Install dependencies run: bun install shell: bash |
