Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
topherbuckley committed Jun 4, 2024
1 parent 408ede1 commit 561d6c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/automated-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 561d6c2

Please sign in to comment.