Skip to content

Commit 0f13f96

Browse files
niteshnitesh
authored andcommitted
attempt to upload to artifacts
1 parent 9b52d1a commit 0f13f96

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/build_android.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ jobs:
1616
run: |
1717
apt-get update
1818
apt-get install -y curl unzip
19-
- name: Install AWS CLI
20-
run: |
21-
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
22-
unzip awscliv2.zip
23-
./aws/install
2419
- name: Build application
2520
run: yarn build-unsigned-android
26-
- name: Find and upload APK to S3
21+
- name: Find APK path
2722
run: |
2823
apk_path=$(find . -type f -name "*.apk" | head -n 1)
29-
echo "APK path: $apk_path"
24+
echo "APK_PATH=$apk_path" >> $GITHUB_ENV
25+
- name: Upload APK as artifact
26+
uses: actions/upload-artifact@v4
27+
with:
28+
name: app-release-unsigned
29+
path: ${{ env.APK_PATH }}

0 commit comments

Comments
 (0)