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