Skip to content

Commit d6f3bf0

Browse files
committed
Fixed action release assets paths
1 parent 2e742d1 commit d6f3bf0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/android.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,4 +138,4 @@ jobs:
138138
- name: Upload to release v1.0.0
139139
env:
140140
GH_TOKEN: ${{ github.token }}
141-
run: gh release upload v1.0.0 ./gen/android/app/build/outputs/apk/**/*.apk --clobber
141+
run: gh release upload v1.0.0 ./gen/android/app/build/outputs/apk/arm/release/*.apk ./gen/android/app/build/outputs/apk/arm64/release/*.apk ./gen/android/app/build/outputs/apk/x86/release/*.apk ./gen/android/app/build/outputs/apk/x86_64/release/*.apk --clobber

.github/workflows/linux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,4 +81,4 @@ jobs:
8181
- name: Upload to release v1.0.0
8282
env:
8383
GH_TOKEN: ${{ github.token }}
84-
run: gh release upload v1.0.0 ./dist/bundle/deb/**/*.deb --clobber
84+
run: gh release upload v1.0.0 ./dist/bundle/deb/*.deb --clobber

.github/workflows/windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,4 @@ jobs:
8080
- name: Upload to release v1.0.0
8181
env:
8282
GH_TOKEN: ${{ github.token }}
83-
run: gh release upload v1.0.0 ./dist/bundle/msi/**/*.msi --clobber
83+
run: gh release upload v1.0.0 ./dist/bundle/msi/*.msi --clobber

0 commit comments

Comments
 (0)