File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -13,22 +13,22 @@ jobs:
1313 python-version: ["3.12"]
1414 steps:
1515 - uses: actions/checkout@v4
16- - name: NetExec set up python on ${{ matrix.os }}
16+ - name: Set up python on ${{ matrix.os }}
1717 uses: actions/setup-python@v5
1818 with:
1919 python-version: ${{ matrix.python-version }}
20- - name: Build Native Binary
20+ - name: Build binary
2121 run: |
22- pip install pyinstaller pillow
22+ pip install pyinstaller
2323 pip install .
2424 pyinstaller wddh.spec
25- - name: Upload Windows Binary
25+ - name: Upload Windows binary
2626 if: runner.os == 'windows'
2727 uses: actions/upload-artifact@v4
2828 with:
2929 name: wddh.exe
3030 path: dist/wddh.exe
31- - name: Upload Nix/OSx Binary
31+ - name: Upload non windows binary
3232 if: runner.os != 'windows'
3333 uses: actions/upload-artifact@v4
3434 with:
You can’t perform that action at this time.
0 commit comments