Skip to content

Commit 835a820

Browse files
committed
Fix artifact generation.
1 parent 3665ddb commit 835a820

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ jobs:
1919
- name: Uninstall homebrew
2020
run: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/uninstall.sh)"
2121
- 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"
2323
- 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
2525
- uses: actions/upload-artifact@v4
2626
with:
2727
name: Nuitka-Python311_mac_arm64
28-
path: ${{ github.workspace }}/../Nuitka-Python-Out
28+
path: ${{ github.workspace }}/Nuitka-Python-Out
2929
mac_x64:
3030
name: MacOS Intel Build
3131
runs-on: macos-latest
@@ -35,19 +35,19 @@ jobs:
3535
- uses: actions/cache@v4
3636
with:
3737
path: |
38-
${{ github.workspace }}/../Nuitka-Python-Deps
38+
${{ github.workspace }}/Nuitka-Python-Deps
3939
dep-build
4040
key: ${{ runner.os }}-intel-${{ hashFiles('build.mac.sh') }}
4141
- name: Uninstall homebrew
4242
run: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/uninstall.sh)"
4343
- 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"
4545
- 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
4747
- uses: actions/upload-artifact@v4
4848
with:
4949
name: Nuitka-Python311_mac_x86_64
50-
path: ${{ github.workspace }}/../Nuitka-Python-Out
50+
path: ${{ github.workspace }}/Nuitka-Python-Out
5151

5252
linux:
5353
name: Ubuntu Build

0 commit comments

Comments
 (0)