From 087fa72d7ff0524e057708d5cabd5934a8f97de8 Mon Sep 17 00:00:00 2001 From: krille-chan Date: Tue, 25 Jul 2023 06:42:57 +0200 Subject: [PATCH] ci: Add --yes to snapcraft promote command --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index ad381a22e..21b0d0a28 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -82,9 +82,9 @@ jobs: run: | RELEASE_TYPE=$(echo "${{ github.ref }}" | awk -F"/" '{print $3}') if [ "$RELEASE_TYPE" = "rc" ]; then - snapcraft promote fluffychat --from-channel edge --to-channel candidate + snapcraft promote fluffychat --from-channel edge --to-channel candidate --yes else - snapcraft promote fluffychat --from-channel edge --to-channel stable + snapcraft promote fluffychat --from-channel edge --to-channel stable --yes fi deploy_playstore: