From 438a18f0d1c348dc848af5ad3dbc7c387504b91c Mon Sep 17 00:00:00 2001 From: Svyatoslav Shchipunov Date: Fri, 20 Sep 2024 11:39:20 +0700 Subject: [PATCH] feat: add new SNAPSHOT_SUBTARGETS_TO_BUILD --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 592c1ea..b1e76f7 100644 --- a/index.js +++ b/index.js @@ -4,8 +4,8 @@ const core = require('@actions/core'); const version = process.argv[2]; // Получение версии OpenWRT из аргумента командной строки -// mediatek, ramips -const SNAPSHOT_SUBTARGETS_TO_BUILD = ['filogic', 'mt7622', 'mt7623', 'mt7629', 'mt7620', 'mt7621', 'mt76x8']; +// mediatek, ramips, x86, armsr +const SNAPSHOT_SUBTARGETS_TO_BUILD = ['filogic', 'mt7622', 'mt7623', 'mt7629', 'mt7620', 'mt7621', 'mt76x8', '64', 'armv8']; if (!version) { core.setFailed('Version argument is required');