Skip to content

Commit 761685a

Browse files
plugin upgrade action
1 parent 9b96597 commit 761685a

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/workflows/upgrade.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)