mirror of
https://github.com/tauri-apps/tauri-action.git
synced 2026-01-31 00:35:20 +01:00
fix(android): Correct architecture names (#1255)
This commit is contained in:
8
dist/index.js
vendored
8
dist/index.js
vendored
@@ -85979,14 +85979,14 @@ async function buildProject() {
|
||||
path: (0,external_node_path_.join)(artifactsPath, `apk/arm/release/app-arm-release-unsigend.apk`),
|
||||
name: app.name,
|
||||
platform: targetInfo.platform,
|
||||
arch: 'universal',
|
||||
arch: 'arm',
|
||||
bundle: 'apk',
|
||||
version: app.version,
|
||||
}), (0,utils/* createArtifact */.Dg)({
|
||||
path: (0,external_node_path_.join)(artifactsPath, `apk/x86_64/release/app-x86_64-release-unsigend.apk`),
|
||||
name: app.name,
|
||||
platform: targetInfo.platform,
|
||||
arch: 'arm',
|
||||
arch: 'x86_64',
|
||||
bundle: 'apk',
|
||||
version: app.version,
|
||||
}), (0,utils/* createArtifact */.Dg)({
|
||||
@@ -86018,14 +86018,14 @@ async function buildProject() {
|
||||
path: (0,external_node_path_.join)(artifactsPath, `apk/arm/${debug}/app-arm-${debug}.apk`),
|
||||
name: app.name,
|
||||
platform: targetInfo.platform,
|
||||
arch: 'universal',
|
||||
arch: 'arm',
|
||||
bundle: 'apk',
|
||||
version: app.version,
|
||||
}), (0,utils/* createArtifact */.Dg)({
|
||||
path: (0,external_node_path_.join)(artifactsPath, `apk/x86_64/${debug}/app-x86_64-${debug}.apk`),
|
||||
name: app.name,
|
||||
platform: targetInfo.platform,
|
||||
arch: 'arm',
|
||||
arch: 'x86_64',
|
||||
bundle: 'apk',
|
||||
version: app.version,
|
||||
}), (0,utils/* createArtifact */.Dg)({
|
||||
|
||||
@@ -407,7 +407,7 @@ export async function buildProject(): Promise<Artifact[]> {
|
||||
),
|
||||
name: app.name,
|
||||
platform: targetInfo.platform,
|
||||
arch: 'universal',
|
||||
arch: 'arm',
|
||||
bundle: 'apk',
|
||||
version: app.version,
|
||||
}),
|
||||
@@ -418,7 +418,7 @@ export async function buildProject(): Promise<Artifact[]> {
|
||||
),
|
||||
name: app.name,
|
||||
platform: targetInfo.platform,
|
||||
arch: 'arm',
|
||||
arch: 'x86_64',
|
||||
bundle: 'apk',
|
||||
version: app.version,
|
||||
}),
|
||||
@@ -461,7 +461,7 @@ export async function buildProject(): Promise<Artifact[]> {
|
||||
path: join(artifactsPath, `apk/arm/${debug}/app-arm-${debug}.apk`),
|
||||
name: app.name,
|
||||
platform: targetInfo.platform,
|
||||
arch: 'universal',
|
||||
arch: 'arm',
|
||||
bundle: 'apk',
|
||||
version: app.version,
|
||||
}),
|
||||
@@ -472,7 +472,7 @@ export async function buildProject(): Promise<Artifact[]> {
|
||||
),
|
||||
name: app.name,
|
||||
platform: targetInfo.platform,
|
||||
arch: 'arm',
|
||||
arch: 'x86_64',
|
||||
bundle: 'apk',
|
||||
version: app.version,
|
||||
}),
|
||||
|
||||
Reference in New Issue
Block a user