Skip to content

Commit d1f245b

Browse files
committed
CI: fix asset name
1 parent 13381a5 commit d1f245b

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/main.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,10 @@ jobs:
3535
uses: actions/download-artifact@v4
3636
with:
3737
name: demoapk
38-
path: demo.apk
3938
- name: preinstall
4039
run: pip3 install -r requirements.txt
4140
- name: test
42-
run: ./extract_jni.py demo.apk
41+
run: ./extract_jni.py app-debug.apk
4342

4443
release:
4544
name: release APK
@@ -51,7 +50,6 @@ jobs:
5150
uses: actions/download-artifact@v4
5251
with:
5352
name: demoapk
54-
path: demo.apk
5553
- name: Create Release
5654
id: create_release
5755
uses: actions/create-release@v1
@@ -67,6 +65,6 @@ jobs:
6765
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6866
with:
6967
upload_url: ${{ steps.create_release.outputs.upload_url }}
70-
asset_path: demo.apk
71-
asset_name: demo.apk
68+
asset_path: app-debug.apk
69+
asset_name: app-debug.apk
7270
asset_content_type: application/zip

0 commit comments

Comments
 (0)