From 561d6c23fe3e6c8f504cefbc700d76fde55e7450 Mon Sep 17 00:00:00 2001 From: Christopher Buckley Date: Tue, 4 Jun 2024 16:12:48 +0900 Subject: [PATCH] wip --- .github/workflows/automated-releases.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/automated-releases.yml b/.github/workflows/automated-releases.yml index e963d107..486e8a93 100644 --- a/.github/workflows/automated-releases.yml +++ b/.github/workflows/automated-releases.yml @@ -22,14 +22,14 @@ jobs: run: | apps=$(jq -r '.apps | join(",")' apps-config.json) # create some variable for storing a new line delimited list - paths="" + touch paths # Take apps and add lines to paths by filling in the values of ./apps/{$apps}/build/outputs/apk/debug/{$apps}-debug.apk # and ./apps/{$apps}/build/outputs/apk/release/{$apps}-release-unsigned.apk for app in $(echo $apps | tr "," "\n"); do echo "./apps/${app}/build/outputs/apk/debug/${app}-debug.apk" >> paths echo "./apps/${app}/build/outputs/apk/release/${app}-release-unsigned.apk" >> paths done - echo "paths=$paths" >> $GITHUB_OUTPUT + echo "paths=$(echo paths)" >> $GITHUB_OUTPUT - name: Release uses: softprops/action-gh-release@v2 with: