-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d6f5a31
commit 63f4b65
Showing
4 changed files
with
76 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
name: Build APK | ||
|
||
on: workflow_dispatch | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
# Set up Node.js with the latest LTS version | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 'lts/*' | ||
|
||
- name: Setup .NET | ||
uses: actions/[email protected] | ||
with: | ||
dotnet-version: '6.0.x' | ||
|
||
# Install project dependencies, including Capacitor | ||
- name: Install dependencies | ||
run: npm install | ||
|
||
# Install the latest LTS Java JDK 17 (the current LTS as of 2024) | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
|
||
# Install Android SDK with the latest available tools | ||
- name: Install Android SDK | ||
uses: android-actions/setup-android@v2 | ||
with: | ||
api-level: 34 # Latest Android API level as of 2024 | ||
build-tools: '34.0.0' # Corresponding build-tools version | ||
ndk: '25.2.9519653' # Latest stable NDK as of 2024 | ||
|
||
- name: Build app | ||
run: | | ||
cd Capacitor.Sample | ||
dotnet build | ||
npx vite build | ||
# Add the Android platform to the Capacitor project | ||
- name: Add Android platform | ||
run: | | ||
npx cap add android | ||
npx cap sync | ||
# Build the APK using Gradle | ||
- name: Build Android APK | ||
run: | | ||
cd Capacitor.Sample | ||
cd android | ||
./gradlew assembleDebug | ||
- name: List files | ||
run: ls -aR > filelist.txt | ||
|
||
# Upload the APK as a build artifact | ||
- name: Upload APK | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: app-debug.apk | ||
path: android/app/build/outputs/apk/debug/app-debug.apk | ||
|
||
- name: Upload Filelist | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: filelist.txt | ||
path: filelist.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.