Skip to content

Commit 8661db6

Browse files
committed
Update build.yml
1 parent 1780621 commit 8661db6

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,29 +22,30 @@ jobs:
2222

2323
- name: Set up Python arm64
2424
if: matrix.os == 'macos-latest'
25+
id: setup-python-arm64
2526
uses: actions/setup-python@v5
2627
with:
2728
python-version: "3.9.13"
2829

2930
- name: Set Up Python x64
3031
if: matrix.os == 'macos-13'
31-
id: setup-python
32+
id: setup-python-x64
3233
run: |
3334
curl -O -L https://www.python.org/ftp/python/3.9.13/python-3.9.13-macosx10.9.pkg
3435
sudo installer -pkg python-3.9.13-macosx10.9.pkg -target /
3536
cd ..
3637
3738
- name: Install backend dependencies arm64
3839
if: matrix.os == 'macos-latest'
39-
id: install-backend-deps
40+
id: install-backend-deps-arm64
4041
run: |
4142
cd backend
4243
pip install build
4344
pip install -U -r requirements.txt
4445
4546
- name: Install backend dependencies x64
4647
if: matrix.os == 'macos-13'
47-
id: install-backend-deps
48+
id: install-backend-deps-x64
4849
run: |
4950
cd backend
5051
python3.9 pip install build

0 commit comments

Comments
 (0)