Fix android release ci

This commit is contained in:
Zoe Roux 2024-01-11 01:04:27 +01:00
parent aa26fd7d54
commit 439407ea59
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ jobs:
- name: Parse Asset URL
id: url
run: |
ASSET_URL=$(grep -oe 'https://expo.dev/artifacts/eas/.*' log.txt)
ASSET_URL=$(cat log.txt | jq '.[0].artifacts.buildUrl' -r)
echo The android url is $ASSET_URL
echo "assetUrl=$ASSET_URL" >> $GITHUB_OUTPUT

View File

@ -9,7 +9,7 @@
"ios": "expo start --ios",
"web": "expo start --web",
"build": "eas build --profile production --platform android --non-interactive --auto-submit",
"build:apk": "eas build --profile preview --platform android --non-interactive",
"build:apk": "eas build --profile preview --platform android --non-interactive --json",
"build:dev": "eas build --profile development --platform android --non-interactive",
"update": "eas update --auto --channel prod"
},