Skip to content

Commit 30a8de8

Browse files
committed
chore: update GitHub Actions workflow to include Ubuntu 22.04-arm platform
Modified the release.yml workflow to add support for the Ubuntu 22.04-arm platform, enhancing the build matrix for better compatibility across different environments. Additionally, standardized quotes in the configuration for consistency.
1 parent ecea07b commit 30a8de8

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

.github/workflows/release.yml

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,16 @@ jobs:
2323
fail-fast: false
2424
matrix:
2525
include:
26-
- platform: 'macos-latest' # for Arm based macs (M1 and above).
27-
args: '--target aarch64-apple-darwin'
28-
- platform: 'macos-latest' # for Intel based macs.
29-
args: '--target x86_64-apple-darwin'
30-
- platform: 'ubuntu-24.04'
31-
args: ''
32-
- platform: 'windows-latest'
33-
args: ''
26+
- platform: "macos-latest" # for Arm based macs (M1 and above).
27+
args: "--target aarch64-apple-darwin"
28+
- platform: "macos-latest" # for Intel based macs.
29+
args: "--target x86_64-apple-darwin"
30+
- platform: "ubuntu-24.04"
31+
args: ""
32+
- platform: "ubuntu-22.04-arm"
33+
args: ""
34+
- platform: "windows-latest"
35+
args: ""
3436

3537
runs-on: ${{ matrix.platform }}
3638
steps:
@@ -67,8 +69,8 @@ jobs:
6769
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6870
with:
6971
tagName: v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version.
70-
releaseName: 'v__VERSION__'
71-
releaseBody: 'See https://github.com/milisp/codexia/releases'
72+
releaseName: "v__VERSION__"
73+
releaseBody: "See https://github.com/milisp/codexia/releases"
7274
releaseDraft: false
7375
prerelease: false
7476
args: ${{ matrix.args }}

0 commit comments

Comments
 (0)