Browse Source

more ci testing

Thomas Buck 2 years ago
parent
commit
24cbdf98d1
3 changed files with 7 additions and 3 deletions
  1. 2
    2
      .github/workflows/build.yml
  2. 1
    1
      build_mac.sh
  3. 4
    0
      build_win.sh

+ 2
- 2
.github/workflows/build.yml View File

@@ -47,6 +47,6 @@ jobs:
47 47
       shell: bash
48 48
     - name: Show build results
49 49
       run: |
50
-        ls ${{ github.workspace }}/build/win
51
-        ls ${{ github.workspace }}/build/dist
50
+        ls build/win
51
+        ls build/dist
52 52
       shell: bash

+ 1
- 1
build_mac.sh View File

@@ -15,4 +15,4 @@ zip -r OctoTray_Mac.zip OctoTray.app
15 15
 
16 16
 cd ../../..
17 17
 mkdir -p build/dist
18
-cp -r build/mac/OctoTray_Mac.zip build/dist/
18
+cp -r build/mac/dist/OctoTray_Mac.zip build/dist/

+ 4
- 0
build_win.sh View File

@@ -9,3 +9,7 @@ cp dist/setup_win.py build/win/
9 9
 
10 10
 cd build/win
11 11
 python setup_win.py py2exe
12
+
13
+cd ../..
14
+mkdir -p build/dist
15
+cp -r build/win/* build/dist/

Loading…
Cancel
Save