Skip to content

Commit bc18aa8

Browse files
committed
Update android_deploy.yml
1 parent f3e2bc0 commit bc18aa8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/android_deploy.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,16 @@ jobs:
3535
echo "##[endgroup]"
3636
- name: Get NPM Package Version
3737
run: echo "NPM_PACKAGE_VERSION=$(node -p "require('${{ github.workspace }}/apps/box/package.json').version")" >> $GITHUB_ENV
38+
- name: Show GITHUB_ENV
39+
run: echo $GITHUB_ENV
3840
- name: Build Android Release
3941
run: |
4042
cd ${{ github.workspace }}/apps/box/android
4143
./gradlew assembleRelease
4244
- name: Sign APK
4345
uses: r0adkll/sign-android-release@v1
4446
with:
45-
releaseDirectory: app/build/outputs/apk/release
47+
releaseDirectory: ${{ github.workspace }}/app/build/outputs/apk/release
4648
signingKeyBase64: ${{ secrets.SIGNING_KEY_BASE64 }}
4749
alias: ${{ secrets.KEY_ALIAS }}
4850
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
@@ -52,5 +54,5 @@ jobs:
5254
with:
5355
serviceAccountJsonPlainText: ${{ secrets.SERVICE_ACCOUNT_JSON }}
5456
packageName: land.fx.blox
55-
releaseFiles: app/build/outputs/apk/release/app-release.apk
57+
releaseFiles: ${{ github.workspace }}/app/build/outputs/apk/release/app-release.apk
5658
track: production

0 commit comments

Comments
 (0)