File tree 1 file changed +0
-33
lines changed
1 file changed +0
-33
lines changed Original file line number Diff line number Diff line change 22
22
run : |
23
23
python -m build
24
24
twine upload dist/*
25
- make :
26
- runs-on : ${{ matrix.os }}
27
- strategy :
28
- matrix :
29
- include :
30
- - os : macos-14
31
- arch : arm64
32
- - os : macos-12
33
- arch : x86_64
34
- - os : ubuntu-latest
35
- arch : i686
36
- - os : ubuntu-latest
37
- arch : x86_64
38
- steps :
39
- - uses : actions/checkout@v4
40
- - name : Set up Python
41
- uses : actions/setup-python@v5
42
- with :
43
- python-version : " 3.12"
44
- - name : Build Directory
45
- run : |
46
- pip install -U numpy pyav pyinstaller
47
- pyinstaller auto_editor/__main__.py --strip --optimize 2 \
48
- --exclude-module yaml --exclude-module numpy.random --exclude-module numpy.fft \
49
- --hidden-import auto_editor.subcommands.desc \
50
- --hidden-import auto_editor.subcommands.info --hidden-import auto_editor.subcommands.levels \
51
- --hidden-import auto_editor.subcommands.palet --hidden-import auto_editor.subcommands.repl \
52
- --hidden-import auto_editor.subcommands.subdump --hidden-import auto_editor.subcommands.test
53
- - name : Upload Directory
54
- uses : actions/upload-artifact@v4
55
- with :
56
- name : dist-${{ matrix.os }}-${{ matrix.arch }}
57
- path : dist/
You can’t perform that action at this time.
0 commit comments