Skip to content

Commit ce69b25

Browse files
committed
🐞 Bug Fixes: upload.yml files
1 parent df0d258 commit ce69b25

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/upload.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,11 @@ jobs:
2323

2424
- name: Authenticate with EAS
2525
run: |
26-
echo "{\"cli\": {\"username\": \"${{ secrets.EAS_USERNAME }}\",\"password\": \"${{ secrets.EAS_PASSWORD }}\"}}" > ~/.eas.json
26+
echo "{\"cli\": {\"username\": \"$EAS_USERNAME\",\"password\": \"$EAS_PASSWORD\"}}" > ~/.eas.json
2727
npx eas-cli login
28+
env:
29+
EAS_USERNAME: ${{ secrets.EAS_USERNAME }}
30+
EAS_PASSWORD: ${{ secrets.EAS_PASSWORD }}
2831

2932
- name: Build the app
3033
run: |
@@ -35,4 +38,3 @@ jobs:
3538
curl -F "UPLOADCARE_PUB_KEY=${{ secrets.UPLOADCARE_PUB_KEY }}" \
3639
-F "file=@./android/app/build/outputs/apk/release/app-release.apk" \
3740
"https://upload.uploadcare.com/base/"
38-

0 commit comments

Comments
 (0)