Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Correctly detect Arm AppImages #799

Merged
merged 2 commits into from
May 23, 2024
Merged

fix: Correctly detect Arm AppImages #799

merged 2 commits into from
May 23, 2024

Conversation

FabianLars
Copy link
Member

fixes #798

Waiting for user to test the change

@@ -190,7 +190,11 @@ export async function buildProject(
? 'amd64'
: arch === 'x32' || arch === 'i686'
? 'i386'
: arch;
: arch === 'arm' // TODO: Confirm this
? 'arm'
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

looks stupid but i'd rather have it listed considering that it's different than everything else

@FabianLars FabianLars marked this pull request as ready for review May 23, 2024 20:05
@FabianLars FabianLars merged commit ec3a63a into dev May 23, 2024
10 checks passed
@FabianLars FabianLars deleted the fix/arm-appimage branch May 23, 2024 20:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Action fails to find appimage built on self-hosted aarch64 device
1 participant