|
@@ -23,9 +23,9 @@ jobs:
|
23
|
23
|
- name: Archive build result artifacts
|
24
|
24
|
uses: actions/upload-artifact@v2
|
25
|
25
|
with:
|
26
|
|
- name: mac-build
|
|
26
|
+ name: octotray_mac
|
27
|
27
|
path: |
|
28
|
|
- ${{ github.workspace }}/build/dist
|
|
28
|
+ ${{ github.workspace }}/build/dist/OctoTray_Mac.zip
|
29
|
29
|
build_windows:
|
30
|
30
|
runs-on: windows-latest
|
31
|
31
|
steps:
|
|
@@ -40,10 +40,13 @@ jobs:
|
40
|
40
|
python -m pip install --upgrade pip
|
41
|
41
|
pip install PyQt5
|
42
|
42
|
pip install py2exe
|
|
43
|
+ shell: bash
|
43
|
44
|
- name: Run Windows build
|
44
|
45
|
run: |
|
45
|
46
|
./build_win.sh
|
|
47
|
+ shell: bash
|
46
|
48
|
- name: Show build results
|
47
|
49
|
run: |
|
48
|
50
|
ls ${{ github.workspace }}/build/win
|
49
|
51
|
ls ${{ github.workspace }}/build/dist
|
|
52
|
+ shell: bash
|