We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fde39bf commit e11dca0Copy full SHA for e11dca0
.github/workflows/build.yml
@@ -1,6 +1,11 @@
1
name: Build APK
2
3
on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ release_tag:
7
+ required: false
8
+ type: string
9
push:
10
branches:
11
- master
@@ -154,3 +159,11 @@ jobs:
154
159
with:
155
160
name: x86-apk
156
161
path: ${{ github.workspace }}/V2rayNG/app/build/outputs/apk/*/release/*x86*.apk
162
+
163
+ - name: Upload AndroidLibXrayLite to release
164
+ uses: svenstaro/upload-release-action@v2
165
+ if: github.event.inputs.release_tag != ''
166
+ with:
167
+ file: ${{ github.workspace }}/V2rayNG/app/build/outputs/apk/*playstore*/release/*.apk
168
+ tag: ${{ github.event.inputs.release_tag }}
169
+ file_glob: true
0 commit comments