From 30d97b645111b8acb2759db2fca82a8dfd4d215a Mon Sep 17 00:00:00 2001 From: "Ying-Chun Liu (PaulLiu)" Date: Wed, 29 Apr 2026 16:07:45 +0100 Subject: [PATCH] actions: deploy-gigabyte-ampere-cuttlefish-installer: remove channel releases Remove stable/untable/nightly releases. Just deploy with version numbers. Signed-off-by: Ying-Chun Liu (PaulLiu) --- .../action.yaml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/.github/actions/deploy-gigabyte-ampere-cuttlefish-installer/action.yaml b/.github/actions/deploy-gigabyte-ampere-cuttlefish-installer/action.yaml index c54a0058b0b..025effde4c1 100644 --- a/.github/actions/deploy-gigabyte-ampere-cuttlefish-installer/action.yaml +++ b/.github/actions/deploy-gigabyte-ampere-cuttlefish-installer/action.yaml @@ -23,15 +23,13 @@ runs: --project="android-cuttlefish-artifacts" \ --quiet \ --repository="${REPO}" || true - for VERSION in ${INPUTS_IMAGE_VERSION} ${INPUTS_DEPLOY_CHANNEL}; do - gcloud artifacts generic upload \ - --location=us \ - --package="debian-installer" \ - --project="android-cuttlefish-artifacts" \ - --repository="${REPO}" \ - --version="${VERSION}" \ - --source=$(find . -name *.iso.xz) - done + gcloud artifacts generic upload \ + --location=us \ + --package="debian-installer" \ + --project="android-cuttlefish-artifacts" \ + --repository="${REPO}" \ + --version="${INPUTS_IMAGE_VERSION}" \ + --source=$(find . -name *.iso.xz) popd shell: bash env: