You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/build.yml
+35-1Lines changed: 35 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@ on:
9
9
- '**.md'
10
10
release:
11
11
types: [edited, published]
12
+
workflow_dispatch: # manual trigger for testing
12
13
13
14
permissions:
14
15
contents: write
@@ -27,6 +28,10 @@ jobs:
27
28
artifact_name: capa
28
29
asset_name: linux
29
30
python_version: '3.10'
31
+
- os: ubuntu-22.04-arm
32
+
artifact_name: capa
33
+
asset_name: linux-arm64
34
+
python_version: '3.10'
30
35
- os: ubuntu-22.04
31
36
artifact_name: capa
32
37
asset_name: linux-py312
@@ -35,11 +40,21 @@ jobs:
35
40
artifact_name: capa.exe
36
41
asset_name: windows
37
42
python_version: '3.10'
43
+
# Windows 11 ARM64 complains of conflicting package version
44
+
# Additionally, there is no ARM64 build of Python for Python 3.10 on Windows 11 ARM: https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
0 commit comments