Skip to content

Commit

Permalink
Possible fix for fetching aab file
Browse files Browse the repository at this point in the history
Signed-off-by: Yurii Surzhykov <yuriisurzhykov@gmail.com>
  • Loading branch information
yuriisurzhykov committed May 31, 2024
1 parent 93e7a96 commit acc378d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release_feature_github.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,15 @@ jobs:

- name: Get AAB file path
id: aab-path
run: echo "path=$(find . -regex '^.*/build/outputs/bundle/release/*\.aab$' -type f | head -1)" >> $GITHUB_OUTPUT
run: |
# Find the AAB file, accounting for potential variations in the filename.
aab_file=$(find . -name '*.aab' -type f -path "*build/outputs/bundle/release/*" | head -1)
echo "aab_file=${aab_file}" >> $GITHUB_OUTPUT
- name: Upload AAB file to Artifacts
uses: actions/upload-artifact@v3
with:
path: ${{ steps.aab-path.outputs.path }}
path: ${{ steps.aab-path.outputs.aab_file }}

- name: Generate Universal APK file
uses: snnaplab/universal-apk-generate-action@v1
Expand Down

0 comments on commit acc378d

Please sign in to comment.