Skip to content

Commit 1f1255a

Browse files
committed
fix apk path in workflow
1 parent f671708 commit 1f1255a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/deploy.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,12 @@ jobs:
1717
liaex -i README.md --format pdf --output Documentation --pdf-timeout 1500000
1818
- name: Generate APK
1919
run: |
20-
mkdir -p output
2120
docker run --rm \
2221
-v "${{ github.workspace }}:/input" \
2322
liascript/exporter \
2423
--format android \
2524
--input /input/README.md \
26-
--output /input/output \
25+
--output /input/app \
2726
--android-appId io.github.${{ github.repository_owner }}.${{ github.event.repository.name }}
2827
- name: Delete Previous Release
2928
env:
@@ -63,6 +62,6 @@ jobs:
6362
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6463
with:
6564
upload_url: ${{ steps.create_release.outputs.upload_url }}
66-
asset_path: output/app.apk
65+
asset_path: ./app.apk
6766
asset_name: app.apk
6867
asset_content_type: application/vnd.android.package-archive

0 commit comments

Comments
 (0)