Skip to content

Commit

Permalink
fix: github actions apk upload try 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Gribbirg committed Jul 9, 2024
1 parent 7e7b258 commit c790154
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ jobs:
run: ./gradlew :app:reportWithApkDetailsForReleaseSigned $gradleFlags
- name: Get apk file name
run: |
APK_FILE=$(find ${{ github.workspace }}/app/build/outputs/apk/release-signed/baselineProfiles/ -type f -name "*.apk" | head -n 1)
APK_FILE=$(find ${{ github.workspace }}/app/build/outputs/apk/release-signed/ -type f -name "*.apk" | head -n 1)
echo "APK_FILE=$APK_FILE" >> $GITHUB_ENV
- name: Upload apk
uses: actions/upload-artifact@v4
with:
name: ${{ env.APK_FILE }}
path: ${{ github.workspace }}/app/build/outputs/apk/release-signed/baselineProfiles/${{ env.APK_FILE }}
path: ${{ github.workspace }}/app/build/outputs/apk/release-signed/${{ env.APK_FILE }}

0 comments on commit c790154

Please sign in to comment.