Skip to content

Commit

Permalink
chore: run release workflows on aarch64 linux runner
Browse files Browse the repository at this point in the history
  • Loading branch information
hexchain committed Jan 22, 2025
1 parent 879c078 commit 64cba1a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ jobs:
- os: ubuntu-latest
csc_link_secret: ''
csc_key_password_secret: ''
- os: ubuntu-24.04-arm
csc_link_secret: ''
csc_key_password_secret: ''
steps:
- name: Checkout branch
uses: actions/checkout@v4
Expand Down Expand Up @@ -84,7 +87,7 @@ jobs:
CSC_KEY_PASSWORD: ${{ matrix.csc_key_password_secret != '' && secrets[matrix.csc_key_password_secret] || '' }}

- name: Package app (Linux only)
if: matrix.os == 'ubuntu-latest'
if: startsWith(matrix.os, 'ubuntu')
shell: bash
run: npm run app-package
env:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release-recurring.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ jobs:
build-targets: "portable"
- os: "ubuntu-22.04"
build-targets: "tar.gz"
- os: "ubuntu-24.04-arm"
build-targets: "tar.gz"
steps:
- name: Checkout branch
uses: actions/checkout@v4
Expand Down

0 comments on commit 64cba1a

Please sign in to comment.