mirror of
https://github.com/tauri-apps/tauri-action.git
synced 2026-01-31 00:35:20 +01:00
fix: Correctly detect Arm AppImages (#799)
* fix: Correctly detect Arm AppImages * Create appimage-arm.md
This commit is contained in:
5
.changes/appimage-arm.md
Normal file
5
.changes/appimage-arm.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
action: patch
|
||||
---
|
||||
|
||||
Fixed an issue that caused the action to not detect ARM AppImages.
|
||||
10
dist/index.js
vendored
10
dist/index.js
vendored
File diff suppressed because one or more lines are too long
@@ -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 = [
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user