Skip to content

Commit 83f600e

Browse files
committed
We only want the 32bit release asset
1 parent 704b429 commit 83f600e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/custopize.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
9696
let octopiUrl = null;
9797
for (const asset of release.releaseAssets.nodes) {
98-
if (asset.name.startsWith("octopi-") && asset.name.endsWith(".zip")) {
98+
if (asset.name.startsWith("octopi-") && asset.name.includes("-armhf-") && asset.name.endsWith(".zip")) {
9999
octopiUrl = asset.downloadUrl;
100100
break;
101101
}

0 commit comments

Comments
 (0)