aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/draft_new_release.yml
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2023-05-22 23:46:05 +0530
committerGitHub <noreply@github.com>2023-05-22 23:46:05 +0530
commit4a26689a93fe623a4a4e4705d69d24f9b328fea1 (patch)
tree40df1f330abe66cab287af0721f9e1b54fd81b23 /.github/workflows/draft_new_release.yml
parente682b14cf2f7185e2b5a0551f034a85026005b2c (diff)
fix(github): use a different workaround for broken pipes
This variant avoids false-positive error annotations
Diffstat (limited to '.github/workflows/draft_new_release.yml')
-rw-r--r--.github/workflows/draft_new_release.yml3
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/draft_new_release.yml b/.github/workflows/draft_new_release.yml
index 8f34d69a..a0de05f2 100644
--- a/.github/workflows/draft_new_release.yml
+++ b/.github/workflows/draft_new_release.yml
@@ -53,9 +53,8 @@ jobs:
gradle-home-cache-cleanup: true
- name: Accept all SDK licenses
- continue-on-error: true # GitHub Actions' stdout handling causes a harmless 'broken pipe' error
shell: bash
- run: yes | $ANDROID_HOME/tools/bin/sdkmanager --licenses
+ run: printf 'y\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses
- name: Initialize git config and commit changes
shell: bash