Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-radhika-s committed May 30, 2024
1 parent ea40e0b commit a717699
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/android_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
cd ../app && flutter clean && flutter pub get
cd ..
- name: Deploy Internally
- name: Generate build
env:
APKSIGN_KEYSTORE_BASE64: ${{ secrets.APKSIGN_KEYSTORE_BASE64 }}
APKSIGN_KEYSTORE_PASS: ${{ secrets.APKSIGN_KEYSTORE_PASS }}
Expand All @@ -68,11 +68,11 @@ jobs:
buildName="${versionValue[0]}.${versionValue[1]}.${{ github.run_number }}"
echo "Generating android build $buildName $buildNumber"
flutter build apk --release --build-number=$buildNumber --build-name=$buildName
mv build/app/outputs/flutter-apk/app-*.apk .
mv build/app/outputs/flutter-apk/app*.apk .
- name: Upload APK Artifact
uses: actions/upload-artifact@v2
with:
name: YourSpace APK
path: app-*.apk
path: app*.apk
retention-days: 2

0 comments on commit a717699

Please sign in to comment.