Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.

Commit 1284415

Browse files
committed
fix: update branch name in build workflow and remove APK download steps
1 parent 5e8ecb7 commit 1284415

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Build apk
33
on:
44
push:
55
branches:
6-
- feature/deploy
6+
- feature/deploys
77

88
permissions:
99
contents: write
@@ -50,17 +50,3 @@ jobs:
5050

5151
- name: 🚀 Build app
5252
run: eas build --platform android --profile production --non-interactive --wait
53-
54-
- name: 🔽 Download APK
55-
run: |
56-
BUILD_URL=$(eas build:list --status=finished --limit=1 --json --non-interactive | jq -r '.[0].artifacts.buildUrl')
57-
echo "Downloading from $BUILD_URL"
58-
curl -o ${{ github.workspace }}/app-release.apk "$BUILD_URL"
59-
60-
- name: GH Release
61-
uses: softprops/action-gh-release@v2
62-
with:
63-
name: gift-idea-tracker
64-
tag_name: 1.0.0
65-
files: |
66-
${{ github.workspace }}/app-release.apk

0 commit comments

Comments
 (0)