Skip to content

Commit

Permalink
Build v3!
Browse files Browse the repository at this point in the history
  • Loading branch information
jurplel committed Aug 25, 2022
1 parent 394303e commit 493670d
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 10 deletions.
7 changes: 6 additions & 1 deletion action/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,12 @@ class Inputs {
}
}
else if (this.target === "android") {
this.arch = "android_armv7";
if (compareVersions(this.version, ">=", "5.14.0")) {
this.arch = "android";
}
else {
this.arch = "android_armv7";
}
}
}
const dir = core.getInput("dir") || process.env.RUNNER_WORKSPACE;
Expand Down
17 changes: 13 additions & 4 deletions action/node_modules/.package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 9 additions & 1 deletion action/node_modules/@actions/core/lib/core.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion action/node_modules/@actions/core/lib/core.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions action/node_modules/@actions/core/package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 493670d

Please sign in to comment.