Skip to content

Commit e443209

Browse files
committed
ci: install setuptools to prevent Python distutils errors during dependency installation
1 parent f5d7fe3 commit e443209

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/actions/setup-bun/action.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ runs:
3131
bun-version-file: ${{ !steps.bun-url.outputs.url && 'package.json' || '' }}
3232
bun-download-url: ${{ steps.bun-url.outputs.url }}
3333

34+
- name: Install setuptools for distutils compatibility
35+
run: python3 -m pip install setuptools || pip install setuptools || true
36+
shell: bash
37+
3438
- name: Install dependencies
3539
run: bun install
3640
shell: bash

0 commit comments

Comments
 (0)