File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -20,22 +20,22 @@ jobs:
20
20
- name : Set up Python
21
21
uses : actions/setup-python@v5
22
22
with :
23
- python-version : 3.9
23
+ python-version : 3.13
24
24
25
25
- name : Build 64-bit bootloader
26
26
run : |
27
27
cd bootloader
28
- python waf distclean all --target-arch=64bit
28
+ python waf --target-arch=64bit all
29
29
30
30
- name : Build 32-bit bootloader
31
31
run : |
32
32
cd bootloader
33
- python waf distclean all --target-arch=32bit
33
+ python waf --target-arch=32bit all
34
34
35
35
- name : Build packages
36
36
run : |
37
- python -m pip install wheel
38
- python setup.py sdist bdist_wheel
37
+ python -m pip install build setuptools wheel
38
+ python -m build --no-isolation
39
39
40
40
- name : Archive packages
41
41
uses : actions/upload-artifact@v4
59
59
60
60
- name : Find dist files
61
61
id : files
62
- run : echo "::set-output name= FILES:: $(find -type f -printf '%p ')"
62
+ run : echo "FILES= $(find -type f -printf '%p ')" >> $GITHUN_OUTPUT
63
63
64
64
- name : Publish snapshot package
65
65
You can’t perform that action at this time.
0 commit comments