From 5fc14d5d299bc0ab7e9a3867f685ba479d7b2a82 Mon Sep 17 00:00:00 2001 From: Ivan Ottinger <25105483+ivan-ottinger@users.noreply.github.com> Date: Wed, 13 May 2026 12:02:25 +0200 Subject: [PATCH 1/2] Add Linux platforms to upload_build_to_apps_cdn allowlist --- CHANGELOG.md | 2 +- .../actions/common/upload_build_to_apps_cdn.rb | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 345edd61b..51306ee20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ _None_ ### New Features -_None_ +- `upload_build_to_apps_cdn`: Update the list of valid values for `platform` to add support for `Linux - x64` and `Linux - ARM64`. ### Bug Fixes diff --git a/lib/fastlane/plugin/wpmreleasetoolkit/actions/common/upload_build_to_apps_cdn.rb b/lib/fastlane/plugin/wpmreleasetoolkit/actions/common/upload_build_to_apps_cdn.rb index 740c50ef3..69e08e4d7 100644 --- a/lib/fastlane/plugin/wpmreleasetoolkit/actions/common/upload_build_to_apps_cdn.rb +++ b/lib/fastlane/plugin/wpmreleasetoolkit/actions/common/upload_build_to_apps_cdn.rb @@ -40,6 +40,8 @@ class UploadBuildToAppsCdnAction < Action 'Microsoft Store - x86', 'Microsoft Store - x64', 'Microsoft Store - ARM64', + 'Linux - x64', + 'Linux - ARM64', ].freeze # See https://github.a8c.com/Automattic/wpcom/blob/trunk/wp-content/lib/a8c/cdn/src/enums/enum-install-type.php VALID_INSTALL_TYPES = [ From b752d35c765e37bea94e83ae2771936aab62ed10 Mon Sep 17 00:00:00 2001 From: Ivan Ottinger <25105483+ivan-ottinger@users.noreply.github.com> Date: Wed, 13 May 2026 12:09:55 +0200 Subject: [PATCH 2/2] CHANGELOG: reference PR number --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 51306ee20..10790475a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ _None_ ### New Features -- `upload_build_to_apps_cdn`: Update the list of valid values for `platform` to add support for `Linux - x64` and `Linux - ARM64`. +- `upload_build_to_apps_cdn`: Update the list of valid values for `platform` to add support for `Linux - x64` and `Linux - ARM64`. [#720] ### Bug Fixes