We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be69bcd commit cff8c9dCopy full SHA for cff8c9d
1 file changed
.github/workflows/release-cli.yml
@@ -12,15 +12,28 @@ jobs:
12
strategy:
13
matrix:
14
include:
15
+ # Linux
16
- os: ubuntu-latest
- target: linux
17
+ target: linux-amd64
18
asset_name: chithi-cli-linux-amd64
19
build_cmd: nuitka-linux
20
+
21
+ - os: ubuntu-24.04-arm
22
+ target: linux-arm64
23
+ asset_name: chithi-cli-linux-arm64
24
+ build_cmd: nuitka-linux
25
26
+ # Windows
27
- os: windows-latest
- target: windows
28
+ target: windows-amd64
29
asset_name: chithi-cli-windows-amd64.exe
30
build_cmd: nuitka-windows
31
32
+ - os: windows-11-arm
33
+ target: windows-arm64
34
+ asset_name: chithi-cli-windows-arm64.exe
35
+ build_cmd: nuitka-windows
36
37
runs-on: ${{ matrix.os }}
38
39
steps:
0 commit comments