Skip to content

Commit

Permalink
fix: Correctly detect Arm AppImages (#799)
Browse files Browse the repository at this point in the history
* fix: Correctly detect Arm AppImages

* Create appimage-arm.md
  • Loading branch information
FabianLars committed May 23, 2024
1 parent 09fec51 commit ec3a63a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
5 changes: 5 additions & 0 deletions .changes/appimage-arm.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
action: patch
---

Fixed an issue that caused the action to not detect ARM AppImages.
10 changes: 5 additions & 5 deletions dist/index.js

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion src/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,11 @@ export async function buildProject(
? 'amd64'
: arch === 'x32' || arch === 'i686'
? 'i386'
: arch;
: arch === 'arm' // TODO: Confirm this
? 'arm'
: arch === 'arm64' // TODO: This is probably a Tauri bug
? 'aarch64'
: arch;

artifacts = [
{
Expand Down

0 comments on commit ec3a63a

Please sign in to comment.