Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: run release workflows on aarch64 linux runner
Browse files Browse the repository at this point in the history
hexchain committed Jan 23, 2025
1 parent e877c2a commit e0bca85
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
@@ -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
@@ -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:
2 changes: 2 additions & 0 deletions .github/workflows/release-recurring.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit e0bca85

Please sign in to comment.