Skip to content

Commit 6bceeec

Browse files
authored
Update main.yml
1 parent 680d19d commit 6bceeec

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/main.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,31 @@ jobs:
1010
steps:
1111
- name: Check out repository code
1212
uses: actions/checkout@v4
13+
- uses: actions/cache@v4
14+
with:
15+
path: |
16+
../Nuitka-Python-Deps
17+
key: ${{ runner.os }}-${{ hashFiles('build.mac.sh') }}
1318
- name: Run Build
1419
run: bash build.mac.sh
20+
- uses: actions/upload-artifact@v4
21+
with:
22+
name: Nuitka-Python311_arm64
23+
path: ~/Library/Nuitka-Python311-arm64
1524
mac_x64:
1625
name: MacOS Intel Build
1726
runs-on: macos-latest
1827
steps:
1928
- name: Check out repository code
2029
uses: actions/checkout@v4
30+
- uses: actions/cache@v4
31+
with:
32+
path: |
33+
../Nuitka-Python-Deps
34+
key: ${{ runner.os }}-${{ hashFiles('build.mac.sh') }}
2135
- name: Run Build
2236
run: arch -x86_64 bash build.mac.sh
37+
- uses: actions/upload-artifact@v4
38+
with:
39+
name: Nuitka-Python311_x86_64
40+
path: ~/Library/Nuitka-Python311-x86_64

0 commit comments

Comments
 (0)