Skip to content

Commit ef45e1a

Browse files
committed
Fix the action
1 parent ac606e6 commit ef45e1a

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/python-publish.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,20 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@v4
2424

25-
- uses: actions/setup-python@v5
26-
with:
27-
python-version: "3.x"
28-
2925
- uses: actions/setup-node@v4
3026
with:
3127
node-version: 18
28+
29+
- name: Build JS assets
3230
run: |
3331
cd javascript
3432
npm install --include=dev
3533
npm run build
3634
35+
- uses: actions/setup-python@v5
36+
with:
37+
python-version: "3.x"
38+
3739
- name: Build release distributions
3840
run: |
3941
# NOTE: put your own distribution build steps here.

0 commit comments

Comments
 (0)