We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b52d1a commit 0f13f96Copy full SHA for 0f13f96
.github/workflows/build_android.yml
@@ -16,14 +16,14 @@ jobs:
16
run: |
17
apt-get update
18
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
24
- name: Build application
25
run: yarn build-unsigned-android
26
- - name: Find and upload APK to S3
+ - name: Find APK path
27
28
apk_path=$(find . -type f -name "*.apk" | head -n 1)
29
- 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 commit comments