We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a75f1a0 commit 05b79acCopy full SHA for 05b79ac
.github/workflows/release-capacitor.yml
@@ -1,6 +1,9 @@
1
name: Build Capacitor Release
2
3
-on: push
+on:
4
+ push:
5
+ tags:
6
+ - "v*.*.*"
7
8
jobs:
9
build:
@@ -52,11 +55,7 @@ jobs:
52
55
- name: Build Capacitor App
53
56
run: npx cap build android --keystorepath .keystore/keystore.jks --keystorepass ${{ secrets.ANDROID_KEYSTORE_PASS }} --androidreleasetype APK
54
57
- # - name: Create Release Build
- # uses: softprops/action-gh-release@v2
- # with:
58
- # files: |
59
- # android.zip
60
- # ios.zip
61
- # env:
62
- # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ - name: Create Release Build (Android)
+ uses: softprops/action-gh-release@v2
+ with:
+ files: android/app/build/outputs/apk/release
0 commit comments