We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f671708 commit 1f1255aCopy full SHA for 1f1255a
1 file changed
.github/workflows/deploy.yaml
@@ -17,13 +17,12 @@ jobs:
17
liaex -i README.md --format pdf --output Documentation --pdf-timeout 1500000
18
- name: Generate APK
19
run: |
20
- mkdir -p output
21
docker run --rm \
22
-v "${{ github.workspace }}:/input" \
23
liascript/exporter \
24
--format android \
25
--input /input/README.md \
26
- --output /input/output \
+ --output /input/app \
27
--android-appId io.github.${{ github.repository_owner }}.${{ github.event.repository.name }}
28
- name: Delete Previous Release
29
env:
@@ -63,6 +62,6 @@ jobs:
63
62
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
64
with:
65
upload_url: ${{ steps.create_release.outputs.upload_url }}
66
- asset_path: output/app.apk
+ asset_path: ./app.apk
67
asset_name: app.apk
68
asset_content_type: application/vnd.android.package-archive
0 commit comments