Skip to content

Commit

Permalink
attempt to upload to artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
nitesh authored and nitesh committed May 30, 2024
1 parent 9b52d1a commit 0f13f96
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build_android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ jobs:
run: |
apt-get update
apt-get install -y curl unzip
- name: Install AWS CLI
run: |
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
./aws/install
- name: Build application
run: yarn build-unsigned-android
- name: Find and upload APK to S3
- name: Find APK path
run: |
apk_path=$(find . -type f -name "*.apk" | head -n 1)
echo "APK path: $apk_path"
echo "APK_PATH=$apk_path" >> $GITHUB_ENV
- name: Upload APK as artifact
uses: actions/upload-artifact@v4
with:
name: app-release-unsigned
path: ${{ env.APK_PATH }}

0 comments on commit 0f13f96

Please sign in to comment.