@@ -19,13 +19,13 @@ jobs:
19
19
- name : Uninstall homebrew
20
20
run : /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/uninstall.sh)"
21
21
- name : Run Build
22
- run : bash build.mac.sh "${{ github.workspace }}/../ Nuitka-Python-Out"
22
+ run : bash build.mac.sh "${{ github.workspace }}/Nuitka-Python-Out"
23
23
- name : Cleanup artifact
24
- run : find "${{ github.workspace }}/../ Nuitka-Python-Out" \( -iname '*.o' -o -iname '__pycache__' -o -iname 'link.json' \) | xargs rm -rf
24
+ run : find "${{ github.workspace }}/Nuitka-Python-Out" \( -iname '*.o' -o -iname '__pycache__' -o -iname 'link.json' \) | xargs rm -rf
25
25
- uses : actions/upload-artifact@v4
26
26
with :
27
27
name : Nuitka-Python311_mac_arm64
28
- path : ${{ github.workspace }}/../ Nuitka-Python-Out
28
+ path : ${{ github.workspace }}/Nuitka-Python-Out
29
29
mac_x64 :
30
30
name : MacOS Intel Build
31
31
runs-on : macos-latest
@@ -35,19 +35,19 @@ jobs:
35
35
- uses : actions/cache@v4
36
36
with :
37
37
path : |
38
- ${{ github.workspace }}/../ Nuitka-Python-Deps
38
+ ${{ github.workspace }}/Nuitka-Python-Deps
39
39
dep-build
40
40
key : ${{ runner.os }}-intel-${{ hashFiles('build.mac.sh') }}
41
41
- name : Uninstall homebrew
42
42
run : /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/uninstall.sh)"
43
43
- name : Run Build
44
- run : arch -x86_64 bash build.mac.sh "${{ github.workspace }}/../ Nuitka-Python-Out"
44
+ run : arch -x86_64 bash build.mac.sh "${{ github.workspace }}/Nuitka-Python-Out"
45
45
- name : Cleanup artifact
46
- run : find "${{ github.workspace }}/../ Nuitka-Python-Out" \( -iname '*.o' -o -iname '__pycache__' -o -iname 'link.json' \) | xargs rm -rf
46
+ run : find "${{ github.workspace }}/Nuitka-Python-Out" \( -iname '*.o' -o -iname '__pycache__' -o -iname 'link.json' \) | xargs rm -rf
47
47
- uses : actions/upload-artifact@v4
48
48
with :
49
49
name : Nuitka-Python311_mac_x86_64
50
- path : ${{ github.workspace }}/../ Nuitka-Python-Out
50
+ path : ${{ github.workspace }}/Nuitka-Python-Out
51
51
52
52
linux :
53
53
name : Ubuntu Build
0 commit comments