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 9b96597 commit 761685aCopy full SHA for 761685a
.github/workflows/upgrade.yml
@@ -0,0 +1,31 @@
1
+name: Plugin Upgrade
2
+
3
+# Trigger manual
4
+on:
5
+ workflow_dispatch:
6
7
+jobs:
8
+ build:
9
+ runs-on: macos-13
10
11
12
13
+ steps:
14
+ - name: Checkout repository
15
+ uses: actions/checkout@v3
16
17
+ - name: Setup Tools
18
+ uses: ./.github/actions/setup-tools
19
+ with:
20
+ skip-install-on-cache-hit: 'false'
21
22
+ - name: Verify Java version
23
+ run: java -version
24
25
+ - name: Build Android
26
+ working-directory: android
27
+ run: ./gradlew clean build
28
29
+ # Opcional: executar migração de plugin
30
+ #- name: Run Capacitor Plugin Migration
31
+ # run: npx @capacitor/plugin-migration-v6-to-v7@latest
0 commit comments