Skip to content
This repository was archived by the owner on Mar 7, 2025. It is now read-only.

Commit e54efd1

Browse files
author
Raven
committed
Update GitHub workflow
1 parent c45b7ce commit e54efd1

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

.github/workflows/build.yml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -10,27 +10,27 @@ jobs:
1010
runs-on: macos-latest
1111

1212
steps:
13-
- name: Checkout code
14-
uses: actions/checkout@v2
15-
16-
- name: Set up Python
17-
uses: actions/setup-python@v2
18-
with:
19-
python-version: '3.12.2'
20-
21-
- name: Install dependencies
22-
run: |
23-
pip install nuitka
24-
25-
- name: Make build script executable
26-
run: chmod +x ./build-macos.sh
27-
28-
- name: Run build script
29-
run: |
30-
./build-macos.sh
31-
32-
- name: Upload MacOS Executable
33-
uses: actions/upload-artifact@v3
34-
with:
35-
name: macos-executable
36-
path: ./dist/toolbox.app
13+
- name: Checkout code
14+
uses: actions/checkout@v3
15+
16+
- name: Set up Python
17+
uses: actions/setup-python@v4
18+
with:
19+
python-version: '3.12'
20+
21+
- name: Install dependencies
22+
run: |
23+
python -m pip install --upgrade pip
24+
pip install nuitka
25+
26+
- name: Make build script executable
27+
run: chmod +x ./build-macos.sh
28+
29+
- name: Run build script
30+
run: ./build-macos.sh
31+
32+
- name: Upload MacOS Executable
33+
uses: actions/upload-artifact@v3
34+
with:
35+
name: macos-executable
36+
path: ./dist/toolbox.app

0 commit comments

Comments
 (0)